mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-12 11:26:07 +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>
21 lines
380 B
SCSS
21 lines
380 B
SCSS
@use "styles/Spacings.module.scss";
|
|
|
|
.modal_content_wrapper {
|
|
height: 100%;
|
|
padding: Spacings.$spacing05;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
|
|
.form_wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: Spacings.$spacing05;
|
|
}
|
|
|
|
.button_wrapper {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
} |