blob: 504b8c93a2c56bbca2e81fbc4c095205c70d3f29 [file] [log] [blame]
Derick Montaguea2988f42020-01-17 13:46:30 -06001<template>
2 <div id="app">
3 <AppHeader />
Derick Montague42c19892020-01-17 16:10:34 -06004 <b-container fluid class="page-container">
5 <b-row no-gutters>
6 <b-col tag="nav" cols="12" md="3">
7 <AppNavigation />
8 </b-col>
9 <b-col cols="12" offset-md="1" md="7">
10 <main id="#main-content">
11 <router-view />
12 </main>
13 </b-col>
14 </b-row>
15 </b-container>
Derick Montaguea2988f42020-01-17 13:46:30 -060016 </div>
17</template>
18
19<style lang="scss">
20@import "@/assets/styles/_obmc-custom";
21</style>
22
23<script>
24import AppHeader from "@/components/AppHeader";
25import AppNavigation from "@/components/AppNavigation";
26export default {
27 name: "App",
28 components: {
29 AppHeader,
30 AppNavigation
31 }
32};
33</script>
Derick Montague42c19892020-01-17 16:10:34 -060034
35<style lang="scss" scoped>
36.page-container {
37 margin-right: 0;
38 margin-left: 0;
39 padding-right: 0;
40 padding-left: 0;
41}
42</style>