website/styles/MarkdownPage.module.scss
TheClashFruit fb79913b35
All checks were successful
Deploy Website / build (push) Successful in 1m32s
feat: start creating the website
2024-04-21 14:51:22 +02:00

20 lines
221 B
SCSS

@import 'variables.module';
.pageContent {
display: flex;
> .sideBar {
position: sticky;
top: 0;
height: 100vh;
width: 300px;
margin-right: 20px;
}
> .markdownContent {
flex: 1;
}
}