Skip to content

Commit 7a0ee50

Browse files
committed
feat(auth): rounded style
1 parent 3034b8a commit 7a0ee50

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

web/src/views/Auth.vue

+8-4
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@
7373
justify-center
7474
class="pa-0"
7575
>
76-
<v-card class="px-5 py-3" style="margin-bottom: 10%;">
76+
<v-card class="px-5 py-5" style="margin-bottom: 10%; border-radius: 15px;">
7777
<v-card-text>
7878
<v-form
7979
ref="signInForm"
8080
lazy-validation
8181
v-model="signInFormValid"
82-
style="width: 300px;"
82+
style="width: 350px;"
8383
>
8484

8585
<v-img
@@ -91,7 +91,7 @@
9191
class="mb-4"
9292
/>
9393

94-
<h2 class="text-center pt-6 pb-4">
94+
<h2 class="text-center pt-4 pb-6">
9595
{{ verification ? 'Two-step verification' : 'Log in to your account' }}
9696
</h2>
9797

@@ -144,23 +144,27 @@
144144
></v-text-field>
145145

146146
<v-btn
147+
large
147148
color="primary"
148149
@click="signIn"
149150
:disabled="signInProcess"
150151
block
151152
v-if="loginWithPassword"
153+
rounded
152154
>
153155
{{ $t('signIn') }}
154156
</v-btn>
155157

156158
<v-btn
159+
large
157160
v-for="provider in oidcProviders"
158161
:color="provider.color || 'secondary'"
159162
dark
160-
class="mt-2"
163+
class="mt-3"
161164
@click="oidcSignIn(provider.id)"
162165
block
163166
:key="provider.id"
167+
rounded
164168
>
165169
<v-icon
166170
left

0 commit comments

Comments
 (0)