mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-16 18:52:12 +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>
30 lines
561 B
SCSS
30 lines
561 B
SCSS
@use "styles/Spacings.module.scss";
|
|
|
|
.main_container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
|
|
.chat_page_container {
|
|
display: flex;
|
|
flex: 1 1 0%;
|
|
background-color: var(--background-0);
|
|
padding-block: Spacings.$spacing06;
|
|
padding-inline: Spacings.$spacing09;
|
|
display: flex;
|
|
gap: Spacings.$spacing09;
|
|
overflow: hidden;
|
|
|
|
.sources_wrapper {
|
|
height: 100%;
|
|
width: 0;
|
|
animation: expand 0.2s forwards;
|
|
|
|
@keyframes expand {
|
|
to {
|
|
width: 30%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |