style: fix formatting and add newlines at end of files
All checks were successful
CI / Get Changed Files (pull_request) Successful in 12s
CI / oxlint (pull_request) Successful in 39s
CI / prettier (pull_request) Successful in 55s
CI / eslint (pull_request) Successful in 59s
CI / Docker frontend validation (pull_request) Successful in 1m27s
CI / test-build (pull_request) Successful in 1m15s
CI / Checkstyle Main (pull_request) Successful in 2m6s
CI / Docker backend validation (pull_request) Successful in 2m10s
All checks were successful
CI / Get Changed Files (pull_request) Successful in 12s
CI / oxlint (pull_request) Successful in 39s
CI / prettier (pull_request) Successful in 55s
CI / eslint (pull_request) Successful in 59s
CI / Docker frontend validation (pull_request) Successful in 1m27s
CI / test-build (pull_request) Successful in 1m15s
CI / Checkstyle Main (pull_request) Successful in 2m6s
CI / Docker backend validation (pull_request) Successful in 2m10s
This commit is contained in:
parent
07b594fa36
commit
52de53878e
5 changed files with 14 additions and 18 deletions
|
@ -39,7 +39,7 @@ export const routes: Routes = [
|
||||||
import('./feature/auth/oauth2/oauth2-callback.component').then(
|
import('./feature/auth/oauth2/oauth2-callback.component').then(
|
||||||
(m) => m.OAuth2CallbackComponent
|
(m) => m.OAuth2CallbackComponent
|
||||||
),
|
),
|
||||||
data: { provider: 'github' }
|
data: { provider: 'github' },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'oauth2/callback/google',
|
path: 'oauth2/callback/google',
|
||||||
|
@ -47,7 +47,7 @@ export const routes: Routes = [
|
||||||
import('./feature/auth/oauth2/oauth2-callback.component').then(
|
import('./feature/auth/oauth2/oauth2-callback.component').then(
|
||||||
(m) => m.OAuth2CallbackComponent
|
(m) => m.OAuth2CallbackComponent
|
||||||
),
|
),
|
||||||
data: { provider: 'google' }
|
data: { provider: 'google' },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'game/blackjack',
|
path: 'game/blackjack',
|
||||||
|
|
|
@ -111,11 +111,7 @@
|
||||||
(click)="loginWithGoogle()"
|
(click)="loginWithGoogle()"
|
||||||
class="w-full py-2.5 px-4 rounded flex items-center justify-center bg-white hover:bg-gray-100 text-gray-800 transition-colors"
|
class="w-full py-2.5 px-4 rounded flex items-center justify-center bg-white hover:bg-gray-100 text-gray-800 transition-colors"
|
||||||
>
|
>
|
||||||
<svg
|
<svg class="h-5 w-5 mr-2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||||
class="h-5 w-5 mr-2"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
>
|
|
||||||
<path
|
<path
|
||||||
fill="#EA4335"
|
fill="#EA4335"
|
||||||
d="M5.266 9.765A7.077 7.077 0 0 1 12 4.909c1.69 0 3.218.6 4.418 1.582L19.91 3C17.782 1.145 15.055 0 12 0 7.27 0 3.198 2.698 1.24 6.65l4.026 3.115Z"
|
d="M5.266 9.765A7.077 7.077 0 0 1 12 4.909c1.69 0 3.218.6 4.418 1.582L19.91 3C17.782 1.145 15.055 0 12 0 7.27 0 3.198 2.698 1.24 6.65l4.026 3.115Z"
|
||||||
|
|
Reference in a new issue