mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-30 13:14:20 +00:00
réparation des menus et ajout de la fonction jour/nuit
This commit is contained in:
parent
7e749f4fa9
commit
466e4efc23
8 changed files with 170 additions and 201 deletions
|
|
@ -15,6 +15,7 @@
|
|||
</v-row>
|
||||
</v-container>
|
||||
</v-content>
|
||||
|
||||
</v-app>
|
||||
</template>
|
||||
|
||||
|
|
@ -42,9 +43,16 @@ export default {
|
|||
},
|
||||
|
||||
computed: {
|
||||
// loading () {
|
||||
// return this.$store.state.loading
|
||||
// },
|
||||
footerCSS () {
|
||||
let css = ''
|
||||
if (this.$store.state.drawer) {
|
||||
css += ' footer-padding-left'
|
||||
}
|
||||
if (this.$store.state.rightDrawer) {
|
||||
css += ' footer-padding-right'
|
||||
}
|
||||
return css
|
||||
},
|
||||
hasRightDrawer() {
|
||||
return this.$store.state.hasRightDrawer
|
||||
}
|
||||
|
|
@ -74,3 +82,12 @@ export default {
|
|||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.footer-padding-left {
|
||||
padding-left: 300px;
|
||||
}
|
||||
.footer-padding-right {
|
||||
padding-right: 300px;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@
|
|||
|
||||
<Breadcrumb />
|
||||
|
||||
<h1>Grimoire</h1>
|
||||
|
||||
<v-data-table
|
||||
class="data-table"
|
||||
:headers="headers"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue