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>
22 lines
399 B
SCSS
22 lines
399 B
SCSS
@use "styles/Spacings.module.scss";
|
|
|
|
.add_brain_modal_container {
|
|
display: flex;
|
|
padding-block: Spacings.$spacing05;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
max-height: 90%;
|
|
min-height: 90%;
|
|
overflow: hidden;
|
|
gap: Spacings.$spacing05;
|
|
|
|
.stepper_container {
|
|
width: 100%;
|
|
padding-inline: Spacings.$spacing08;
|
|
}
|
|
|
|
.content_wrapper {
|
|
flex-grow: 1;
|
|
overflow: auto;
|
|
}
|
|
} |