mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-19 08:42:08 +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%;
|
||
|
}
|
||
|
}
|