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
411 B
SCSS
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;
|
|
}
|
|
}
|
|
} |