Added base layout style

pull/1/head
Nikan Dalvand 2019-07-19 21:33:45 +04:30
parent 829f4aaf99
commit 3f7ce93ad6
1 changed files with 10 additions and 3 deletions

View File

@ -1,9 +1,11 @@
<template> <template>
<div id="app"> <div id="app" class="root">
<DockableSidebar /> <DockableSidebar />
<div class="page-wrapper">
<router-view></router-view> <router-view></router-view>
<PlayerBar /> <PlayerBar />
</div> </div>
</div>
</template> </template>
<script> <script>
@ -17,4 +19,9 @@ export default {
<style lang="sass"> <style lang="sass">
@import "../../node_modules/normalize-scss/sass/normalize.scss" @import "../../node_modules/normalize-scss/sass/normalize.scss"
.root,.page-wrapper
display: flex
.page-wrapper
flex-direction: column
flex-grow: 1
</style> </style>