Commit 9f9522c1d91ab0728537cecb5ab5d9abcd866ff3

Authored by Neeraj Sharma
1 parent 43af283e05

fix button text according to design in mail

src/pages/Dashboard.vue
... ... @@ -47,7 +47,7 @@
47 47 v-bind:class="{ active: isActive }"
48 48 id="tab"
49 49 class="subheading"
50   - >Existing user</v-tab>
  50 + >Existing User</v-tab>
51 51 <v-tab
52 52 ripple
53 53 @click="activeTab('new')"
... ... @@ -769,6 +769,9 @@ export default {
769 769 };
770 770 </script>
771 771 <style scoped>
  772 +.v-tabs__div {
  773 + text-transform: none;
  774 +}
772 775 .v-input__prepend-outer {
773 776 margin-right: 0px !important;
774 777 }
... ...
src/pages/forgetpassword.vue
... ... @@ -35,7 +35,7 @@
35 35 </v-card-text>
36 36 <v-card-actions>
37 37 <v-flex text-xs-center>
38   - <v-btn round class="mt-1" color="black" dark large @click="reset">Send Request</v-btn></v-flex>
  38 + <v-btn round class="mt-1 button" color="black" dark large @click="reset">Send Request</v-btn></v-flex>
39 39 </v-card-actions>
40 40 <v-snackbar
41 41 :timeout="timeout"
... ... @@ -119,6 +119,9 @@ left:50px;
119 119 .v-btn--large {
120 120 padding: 0px 74px;
121 121 }
  122 +.button{
  123 + text-transform: none;
  124 +}
122 125 @media screen and (max-width: 472px) {
123 126 .v-btn--large {
124 127 padding:0px 20px !important;
... ...