Files
FixIt/assets/css/_core/_layout.scss
T
2022-11-04 11:06:50 +08:00

32 lines
484 B
SCSS

/** Layout **/
.wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
width: 100%;
main {
flex: 1 0 auto;
aside:first-child {
order: 2;
}
&.container {
display: flex;
align-items: flex-start;
justify-content: center;
padding: 0 1rem;
&:has(.home:not(.posts)) {
align-items: center;
}
}
&.container-reverse {
@extend .container;
flex-direction: row-reverse;
}
}
}