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

30 lines
492 B
Vue
Raw Normal View History

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