Derick Montague | a2988f4 | 2020-01-17 13:46:30 -0600 | [diff] [blame] | 1 | <template> |
| 2 | <div id="app"> |
| 3 | <AppHeader /> |
Derick Montague | 42c1989 | 2020-01-17 16:10:34 -0600 | [diff] [blame^] | 4 | <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 Montague | a2988f4 | 2020-01-17 13:46:30 -0600 | [diff] [blame] | 16 | </div> |
| 17 | </template> |
| 18 | |
| 19 | <style lang="scss"> |
| 20 | @import "@/assets/styles/_obmc-custom"; |
| 21 | </style> |
| 22 | |
| 23 | <script> |
| 24 | import AppHeader from "@/components/AppHeader"; |
| 25 | import AppNavigation from "@/components/AppNavigation"; |
| 26 | export default { |
| 27 | name: "App", |
| 28 | components: { |
| 29 | AppHeader, |
| 30 | AppNavigation |
| 31 | } |
| 32 | }; |
| 33 | </script> |
Derick Montague | 42c1989 | 2020-01-17 16:10:34 -0600 | [diff] [blame^] | 34 | |
| 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> |