43 lines
799 B
SCSS

.base-page {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
> header {
flex: 0 0 58px;
width: 100%;
// max-width: 850px;
margin: 0 auto;
padding-right: 8px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
}
.base-container {
height: 100%;
overflow: hidden;
border-radius: var(--border-radius);
> section {
position: relative;
flex: 1 1 100%;
width: 100%;
height: 100%;
overflow: auto;
padding: 5px 5px;
box-sizing: border-box;
scrollbar-gutter: stable;
background-color: var(--background-color);
.base-content {
width: 100%;
// max-width: 850px;
margin: 0 auto;
}
}
}
}