mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-17 11:21:35 +03:00
21 lines
371 B
SCSS
21 lines
371 B
SCSS
|
@use "@/styles/Colors.module.scss";
|
||
|
@use "@/styles/Spacings.module.scss";
|
||
|
|
||
|
.chat_page_container {
|
||
|
display: flex;
|
||
|
flex: 1 1 0%;
|
||
|
background-color: Colors.$white;
|
||
|
padding: Spacings.$spacing06;
|
||
|
display: flex;
|
||
|
gap: Spacings.$spacing09;
|
||
|
|
||
|
&.feeding {
|
||
|
background-color: Colors.$chat-bg-gray;
|
||
|
}
|
||
|
|
||
|
.data_panel_wrapper {
|
||
|
height: 100%;
|
||
|
width: 30%;
|
||
|
}
|
||
|
}
|