comparison client/src/App.vue @ 551:89bc8111563a

refac: Layout adjustments
author Thomas Junk <thomas.junk@intevation.de>
date Fri, 31 Aug 2018 14:12:00 +0200
parents 505656a9947f
children f41c74b8af9c
comparison
equal deleted inserted replaced
550:06907c875077 551:89bc8111563a
1 <template> 1 <template>
2 <div id="app"> 2 <div id="app main d-flex flex-column">
3 <Topbar></Topbar>
4 <Sidebar></Sidebar>
3 <router-view/> 5 <router-view/>
4 </div> 6 </div>
5 </template> 7 </template>
6 8
7 <style lang="scss"> 9 <style lang="scss">
24 -moz-osx-font-smoothing: grayscale; 26 -moz-osx-font-smoothing: grayscale;
25 text-align: center; 27 text-align: center;
26 color: #2c3e50; 28 color: #2c3e50;
27 } 29 }
28 </style> 30 </style>
31
32 <script>
33 import Sidebar from "./components/Sidebar";
34 import Topbar from "./components/Topbar";
35 export default {
36 name: "app",
37 components: {
38 Sidebar,
39 Topbar
40 }
41 };
42 </script>