quivr/frontend/app/chat/[chatId]/page.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

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