2024-06-18 19:00:19 +03:00
|
|
|
@use "styles/Spacings.module.scss";
|
2024-01-25 23:44:24 +03:00
|
|
|
|
2024-02-07 03:05:07 +03:00
|
|
|
.main_container {
|
2024-01-25 23:44:24 +03:00
|
|
|
display: flex;
|
2024-02-07 03:05:07 +03:00
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
2024-01-25 23:44:24 +03:00
|
|
|
|
2024-02-07 03:05:07 +03:00
|
|
|
.chat_page_container {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 0%;
|
2024-03-21 10:01:21 +03:00
|
|
|
background-color: var(--background-0);
|
2024-02-07 03:05:07 +03:00
|
|
|
padding-block: Spacings.$spacing06;
|
|
|
|
padding-inline: Spacings.$spacing09;
|
|
|
|
display: flex;
|
|
|
|
gap: Spacings.$spacing09;
|
|
|
|
overflow: hidden;
|
2024-01-25 23:44:24 +03:00
|
|
|
|
2024-02-24 05:56:51 +03:00
|
|
|
.sources_wrapper {
|
2024-02-07 03:05:07 +03:00
|
|
|
height: 100%;
|
2024-02-24 05:56:51 +03:00
|
|
|
width: 0;
|
|
|
|
animation: expand 0.2s forwards;
|
|
|
|
|
|
|
|
@keyframes expand {
|
|
|
|
to {
|
|
|
|
width: 30%;
|
|
|
|
}
|
|
|
|
}
|
2024-02-07 03:05:07 +03:00
|
|
|
}
|
2024-01-25 23:44:24 +03:00
|
|
|
}
|
2024-06-18 19:00:19 +03:00
|
|
|
}
|