67 lines
2.4 KiB
CSS
67 lines
2.4 KiB
CSS
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/shared/layouts/ViewLayout.vue?vue&type=style&index=0&id=3a43ae76&lang=scss ***!
|
|
\***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
.viewLayout {
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: grid;
|
|
grid-template-columns: 110px 1fr;
|
|
grid-template-rows: 139px 1fr;
|
|
background-color: rgb(245, 245, 245);
|
|
}
|
|
.viewLayout .header {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #ffffff;
|
|
grid-column: 2;
|
|
grid-row: 1;
|
|
}
|
|
.viewLayout .header__top {
|
|
width: 100%;
|
|
height: 74px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
padding-left: 35px;
|
|
}
|
|
.viewLayout .header__title {
|
|
font-size: 32px;
|
|
}
|
|
.viewLayout .header__bottom {
|
|
width: 100%;
|
|
height: 64px;
|
|
border-top: 1px solid #f3f3f3;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0 35px;
|
|
}
|
|
.viewLayout .navbar {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 18px 0;
|
|
background-color: #212121;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
grid-row: span 2;
|
|
grid-column: 1;
|
|
}
|
|
.viewLayout .navbar__logo {
|
|
width: 74px;
|
|
height: 74px;
|
|
background-color: #fbe6d3;
|
|
margin-bottom: 20px;
|
|
}
|
|
.viewLayout main {
|
|
position: relative;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
padding: 20px;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
}
|