quivr/frontend/app/user/page.module.scss
Stan Girard e69c6debae
feat(turbopack): Implement turbo pack compiler (#2685)
This pull request implements the turbo pack compiler feature. 

Simply run yarn run dev --turbo or npm run dev

https://turbo.build/blog/turbopack-benchmarks

---------

Co-authored-by: Zewed <dewez.antoine2@gmail.com>
Co-authored-by: Stan Girard <stan@quivr.app>
2024-06-18 18:00:19 +02:00

33 lines
619 B
SCSS

@use "styles/Radius.module.scss";
@use "styles/ScreenSizes.module.scss";
@use "styles/Spacings.module.scss";
.user_page_container {
padding-inline: Spacings.$spacing09;
padding-block: Spacings.$spacing07;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
@media (max-width: ScreenSizes.$small) {
display: flex;
flex-direction: column;
}
.content_wrapper {
display: flex;
gap: Spacings.$spacing05;
}
}
.modal_wrapper {
display: flex;
flex-direction: column;
gap: Spacings.$spacing05;
.buttons {
display: flex;
justify-content: space-between;
}
}