2022-05-04 09:55:44 +02:00
|
|
|
.root {
|
2022-09-30 09:56:10 +02:00
|
|
|
background-color: var(--theme-color-background-chat);
|
2022-05-04 09:55:44 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.root {
|
2022-05-17 08:41:39 +02:00
|
|
|
position: sticky;
|
2022-05-17 16:36:07 +02:00
|
|
|
display: block;
|
2022-05-04 09:55:44 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-30 08:17:12 +02:00
|
|
|
/*
|
2022-05-17 16:36:07 +02:00
|
|
|
First div is .ant-layout-sider-children
|
|
|
|
Only way to target it apparently
|
|
|
|
*/
|
|
|
|
.root > div {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
-moz-box-flex: 1 !important;
|
|
|
|
flex-grow: 1 !important;
|
|
|
|
height: 100% !important;
|
|
|
|
}
|