quivr/frontend/lib/components/AddBrainModal/AddBrainModal.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

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;
}
}