remove sidebar to help with layout

This commit is contained in:
Peter Morton 2023-09-27 13:29:45 -05:00
parent c18f90386b
commit 0b86bbb899

View File

@ -4,13 +4,10 @@ export default {
}; };
</script> </script>
<template> <template>
<div class="flex-container"> <!-- <router-view class="view sidebar" name="SideBarView"></router-view> -->
<router-view class="view sidebar" name="SideBarView"></router-view>
<div class="flex-child">
<router-view class="view main-content"></router-view> <router-view class="view main-content"></router-view>
</div>
</div>
</template> </template>
<style lang="scss"> <style lang="scss">
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600"); @import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600");
@ -24,13 +21,13 @@ html {
body { body {
font-family: "Source Sans Pro", sans-serif; font-family: "Source Sans Pro", sans-serif;
font-size: 18px; font-size: 18px;
background-color: #f2f4f7;
color: #262626; color: #262626;
} }
.flex-container { .flex-container {
display: flex; display: flex;
height: 100%; height: 100%;
width: 100%;
} }
// .flex-child { // .flex-child {