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>
<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>
</div>
</div>
</template>
<style lang="scss">
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600");
@ -24,13 +21,13 @@ html {
body {
font-family: "Source Sans Pro", sans-serif;
font-size: 18px;
background-color: #f2f4f7;
color: #262626;
}
.flex-container {
display: flex;
height: 100%;
width: 100%;
}
// .flex-child {