Skip to content

Commit

Permalink
feat(RAdminize): RAdminize use dark mode by default
Browse files Browse the repository at this point in the history
  • Loading branch information
lbwa committed Mar 7, 2020
1 parent 7b235af commit 5addb30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/layouts/RAdminize.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<template>
<v-app>
<r-adminize-nav v-model="isOpenDrawer" />

<v-app-bar app clipped-left>
<v-app-bar-nav-icon @click.stop="isOpenDrawer = !isOpenDrawer" />
<v-toolbar-title>Adminize console</v-toolbar-title>
</v-app-bar>

<r-adminize-nav v-model="isOpenDrawer" />

<v-content>
<v-container class="fill-height">
<v-container fluid class="fill-height justify-center">
<!-- router view export -->
<router-view />
</v-container>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vuetify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Vue.use(Vuetify)

export default new Vuetify({
theme: {
dark: true,
dark: false,
options: {
customProperties: true
},
Expand Down

0 comments on commit 5addb30

Please # to comment.