Commit 37996f3ca5f0b1edd9adc7baa9232da3049637d6

Authored by Neeraj Sharma
1 parent 68d7420349

fixed dashboard card

src/pages/Dashboard/dashboard.vue
... ... @@ -59,7 +59,7 @@
59 59 <v-flex xs12 sm12 md3>
60 60 <router-link :to="{ name:'Students' }">
61 61 <v-card class="card pink-bgcolor">
62   - <v-card-title primary-title class="title white--text py-3">Students</v-card-title>
  62 + <v-card-title primary-title class="titleCard white--text py-3">Students</v-card-title>
63 63 <img
64 64 src="/static/icon/dashboard icons-09.png"
65 65 class="ml-2"
... ... @@ -74,7 +74,7 @@
74 74 <v-flex xs12 sm12 md3>
75 75 <router-link :to="{ name:'Teachers' }">
76 76 <v-card flat class="card elevation-2 firozi-bgcolor">
77   - <v-card-title primary-title class="title white--text py-3">Teachers</v-card-title>
  77 + <v-card-title primary-title class="titleCard white--text py-3">Teachers</v-card-title>
78 78 <img
79 79 src="/static/icon/dashboard icons-08.png"
80 80 class="ml-2"
... ... @@ -90,7 +90,7 @@
90 90 <v-flex xs12 sm12 md3>
91 91 <router-link :to="{ name:'Parents' }">
92 92 <v-card flat class="card yellow darken-3">
93   - <v-card-title primary-title class="title white--text py-3">Parents</v-card-title>
  93 + <v-card-title primary-title class="titleCard white--text py-3">Parents</v-card-title>
94 94 <img
95 95 src="/static/icon/dashboard icons-07.png"
96 96 class="ml-3"
... ... @@ -105,7 +105,7 @@
105 105 <v-flex xs12 sm12 md3>
106 106 <router-link :to="{ name:'Class' }">
107 107 <v-card flat class="card darkBlue-bgcolor">
108   - <v-card-title primary-title class="title white--text py-3">Class</v-card-title>
  108 + <v-card-title primary-title class="titleCard white--text py-3">Class</v-card-title>
109 109 <img
110 110 src="/static/icon/dashboard icons-03.png"
111 111 width="40"
... ...
static/css/custom.css
... ... @@ -310,6 +310,14 @@ table.v-table thead th {
310 310 font-size: 14px !important;
311 311 }
312 312  
  313 +.titleCard {
  314 + font-size: 20px !important;
  315 + font-weight: 500;
  316 + line-height: 1 !important;
  317 + letter-spacing: 0.02em !important;
  318 + font-family: 'Roboto', sans-serif !important;
  319 +}
  320 +
313 321  
314 322 /* .v-text-field input {
315 323 text-align: center;
... ...