mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
28 lines
413 B
SCSS
28 lines
413 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;
|
|
}
|
|
|
|
&.container-reverse {
|
|
@extend .container;
|
|
flex-direction: row-reverse;
|
|
}
|
|
}
|
|
}
|