mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-17 23:51:51 +03:00
17 lines
311 B
SCSS
17 lines
311 B
SCSS
|
@use "@/styles/Spacings.module.scss";
|
||
|
|
||
|
.page_wrapper {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: Spacings.$spacing05;
|
||
|
width: 100%;
|
||
|
height: 100vh;
|
||
|
overflow: hidden;
|
||
|
|
||
|
.content_wrapper {
|
||
|
padding-inline: Spacings.$spacing09;
|
||
|
padding-block: Spacings.$spacing05;
|
||
|
overflow-y: scroll;
|
||
|
}
|
||
|
}
|