mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 17:43:03 +03:00
e69c6debae
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>
33 lines
619 B
SCSS
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;
|
|
}
|
|
} |