Commit af414ec9cf29d6993d9c7dd77aa2a5a35dfd1e54
1 parent
e8965626ff
Exists in
master
and in
3 other branches
set style in text field of email and password
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
src/pages/Authentication/Login.vue
... | ... | @@ -17,7 +17,7 @@ |
17 | 17 | <img src="/static/icon.png" height="40" width="140" alt="logo" class="logo" /> |
18 | 18 | <h3 class="white--text my-3 ml-5 logoSchool">School-Management</h3> |
19 | 19 | </v-toolbar-items> |
20 | - </v-toolbar> --> | |
20 | + </v-toolbar>--> | |
21 | 21 | |
22 | 22 | <v-card class="elevation-1 pa-1 card" style="background-color: #7852cc" dark> |
23 | 23 | <img |
... | ... | @@ -32,6 +32,7 @@ |
32 | 32 | <v-form ref="form" v-model="valid" lazy-validation> |
33 | 33 | <label class="title">Email</label> |
34 | 34 | <v-text-field |
35 | + style="padding: 0px; margin: 0px;" | |
35 | 36 | v-model.trim="userLogincredentials.email" |
36 | 37 | :rules="nameRules" |
37 | 38 | placeholder="Enter your email" |
... | ... | @@ -39,6 +40,7 @@ |
39 | 40 | ></v-text-field> |
40 | 41 | <label class="title">Password</label> |
41 | 42 | <v-text-field |
43 | + style="padding: 0px; margin: 0px;" | |
42 | 44 | :rules="[rules.required]" |
43 | 45 | v-model.trim="userLogincredentials.password" |
44 | 46 | :append-icon="e1 ? 'visibility_off' : 'visibility'" | ... | ... |