quivr/frontend/lib/components/UploadDocumentModal/UploadDocumentModal.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
411 B
SCSS

@use "styles/Spacings.module.scss";
@use "styles/ZIndexes.module.scss";
.knowledge_modal {
position: relative;
display: flex;
flex-direction: column;
justify-content: space-between;
background-color: var(--background-0);
width: 100%;
flex: 1;
overflow: hidden;
.buttons {
display: flex;
justify-content: space-between;
&.standalone {
justify-content: flex-end;
}
}
}