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