Commit d75967ec20805438e82113bc2a5dc985f16e4f11

Authored by Neeraj Sharma
1 parent 603a067025

implemented changes and page header toolbar funcatinallity

src/components/pageHeader/AppDrawer.vue
... ... @@ -8,7 +8,7 @@
8 8 v-model="drawer"
9 9 width="260"
10 10 >
11   - <v-toolbar color="grey lighten" >
  11 + <v-toolbar style="background:#39b982" >
12 12 <!-- <img v-bind:src="computeLogo" height="30" class="imgLogo" alt="ana"> -->
13 13 <h4 class="white--text my-3 ml-4">School-Managament</h4>
14 14 <v-toolbar-title class="ml-0 pl-3">
... ... @@ -157,3 +157,11 @@ export default {
157 157 }
158 158 }
159 159 </style>
  160 +
  161 +
  162 +<style scoped>
  163 +.theme--light .v-icon, .application .theme--light.v-icon {
  164 + color: #39b982;
  165 +}
  166 +</style>
  167 +
... ...
src/components/pageHeader/AppToolbar.vue
1 1 <template>
2 2 <v-toolbar
3   - color="grey"
  3 + class="fixcolors"
4 4 fixed
5 5 app
6 6 >
... ... @@ -58,7 +58,6 @@ export default {
58 58 title: "Logout",
59 59 click: e => {
60 60 window.getApp.$emit("APP_LOGOUT");
61   - // this.$store.dispatch("setToken", null);
62 61 }
63 62 }
64 63 ]
... ...