Skip to content

Commit 111ff10

Browse files
committed
Fix login page on dark theme
1 parent 45a7ffa commit 111ff10

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

src/pages/Login/Login.vue

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<v-row no-gutters class="align-start">
1313
<v-col cols="12" class="login-part d-flex align-center justify-center flex-column">
1414
<div class="login-wrapper pt-16 pt-sm-0">
15-
<v-tabs grow v-model="loginTabs" class="my-16">
15+
<v-tabs grow v-model="loginTabs" class="my-16" light>
1616
<v-tabs-slider></v-tabs-slider>
1717
<v-tab :href="`#tab-login`">
1818
LOGIN
@@ -29,6 +29,7 @@
2929
<p class="login-slogan display-2 text-center font-weight-medium my-10">Good Morning, User</p>
3030
<v-btn
3131
height="45"
32+
light
3233
block
3334
color="white"
3435
elevation="0"
@@ -38,9 +39,9 @@
3839
Sign in with Google</v-btn>
3940
</v-col>
4041
<v-col cols="12" class="d-flex align-center my-3 my-sm-8">
41-
<v-divider></v-divider>
42-
<span class="px-5"> or </span>
43-
<v-divider></v-divider>
42+
<v-divider light></v-divider>
43+
<span class="px-5 black--text"> or </span>
44+
<v-divider light></v-divider>
4445
</v-col>
4546
<v-form
4647
ref="log"
@@ -49,6 +50,7 @@
4950
>
5051
<v-col>
5152
<v-text-field
53+
light
5254
id="email"
5355
ref="email"
5456
v-model="email"
@@ -59,6 +61,7 @@
5961
required
6062
></v-text-field>
6163
<v-text-field
64+
light
6265
id="password"
6366
ref="password"
6467
v-model="password"
@@ -105,13 +108,15 @@
105108
<v-form>
106109
<v-col>
107110
<v-text-field
111+
light
108112
v-model="createFullName"
109113
hide-details
110114
single-line
111115
label="Full Name"
112116
required
113117
></v-text-field>
114118
<v-text-field
119+
light
115120
v-model="createEmail"
116121
:rules="emailRules"
117122
single-line
@@ -120,6 +125,7 @@
120125
required
121126
></v-text-field>
122127
<v-text-field
128+
light
123129
v-model="createPassword"
124130
:rules="passRules"
125131
hide-details
@@ -132,6 +138,7 @@
132138
</v-col>
133139
<v-col class="d-flex justify-space-between">
134140
<v-btn
141+
light
135142
large
136143
block
137144
:disabled="createFullName.length === 0 || createEmail.length === 0 || createPassword === 0"
@@ -143,12 +150,12 @@
143150
</v-form>
144151

145152
<v-col cols="12" class="d-flex align-center my-2 my-sm-8">
146-
<v-divider></v-divider>
147-
<span class="px-5"> or </span>
148-
<v-divider></v-divider>
153+
<v-divider light></v-divider>
154+
<span class="px-5 black--text"> or </span>
155+
<v-divider light></v-divider>
149156
</v-col>
150157

151-
<v-btn @click="googleLogin" height="45" block color="white" elevation="0" class="google text-capitalize">
158+
<v-btn light @click="googleLogin" height="45" block color="white" elevation="0" class="google text-capitalize">
152159
<v-img src="@/assets/google.svg" max-width="30" class="mr-4"></v-img>
153160
Sign in with Google</v-btn>
154161
</v-row>

0 commit comments

Comments
 (0)