2
0
mirror of https://github.com/frappe/books.git synced 2025-01-25 16:18:33 +00:00
books/src/pages/Desk.vue
2019-10-04 23:30:51 +05:30

31 lines
495 B
Vue

<template>
<div class="flex">
<Sidebar class="w-56" />
<div class="flex-1 overflow-y-hidden">
<router-view :key="$route.fullPath" />
</div>
</div>
</template>
<script>
import Sidebar from '../components/Sidebar';
export default {
name: 'Desk',
components: {
Sidebar
}
};
</script>
<style>
.page-container {
height: 100vh;
max-height: 100vh;
width: 100%;
padding-left: 208px;
overflow-x: hidden;
}
.sidebar {
position: fixed;
z-index: 20;
}
</style>