mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
e369458f09
✨ Feat: add pageStyle option (#62) TODO: refactor toc logic (#65) > Tip: This commit needs to be improved and to be tested. Please don't update to it!
19 lines
276 B
SCSS
19 lines
276 B
SCSS
/** Layout **/
|
|
.wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
width: 100%;
|
|
|
|
main {
|
|
flex: 1 0 auto;
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
justify-content: center;
|
|
padding: 0 1rem;
|
|
}
|
|
}
|
|
}
|