summaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue25
1 files changed, 21 insertions, 4 deletions
diff --git a/src/App.vue b/src/App.vue
index d21ef4f6..504b8c93 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,10 +1,18 @@
<template>
<div id="app">
<AppHeader />
- <AppNavigation />
- <main id="#main-content">
- <router-view />
- </main>
+ <b-container fluid class="page-container">
+ <b-row no-gutters>
+ <b-col tag="nav" cols="12" md="3">
+ <AppNavigation />
+ </b-col>
+ <b-col cols="12" offset-md="1" md="7">
+ <main id="#main-content">
+ <router-view />
+ </main>
+ </b-col>
+ </b-row>
+ </b-container>
</div>
</template>
@@ -23,3 +31,12 @@ export default {
}
};
</script>
+
+<style lang="scss" scoped>
+.page-container {
+ margin-right: 0;
+ margin-left: 0;
+ padding-right: 0;
+ padding-left: 0;
+}
+</style>