2
0
mirror of https://github.com/frappe/books.git synced 2025-01-25 16:18:33 +00:00
books/src/pages/Desk.vue

31 lines
466 B
Vue
Raw Normal View History

2018-10-23 18:12:36 +05:30
<template>
<div class="flex">
<Sidebar />
<div class="bg-white">
2019-07-19 18:54:31 +05:30
<router-view :key="$route.fullPath" />
2018-10-23 18:12:36 +05:30
</div>
</div>
</template>
<script>
import Sidebar from '../components/Sidebar';
export default {
name: 'Desk',
components: {
Sidebar
}
2019-07-19 18:54:31 +05:30
};
2018-10-23 18:12:36 +05:30
</script>
<style>
.page-container {
height: 100vh;
max-height: 100vh;
width: 100%;
padding-left: 208px;
2019-08-01 18:30:52 +05:30
overflow-x: hidden;
}
.sidebar {
position: fixed;
z-index: 20;
2018-10-23 18:12:36 +05:30
}
</style>