23 lines
428 B
SCSS
23 lines
428 B
SCSS
@import '../../../styles/mixins.scss';
|
|
|
|
.root {
|
|
background-color: var(--theme-color-background-chat);
|
|
display: none;
|
|
@include screen(desktop) {
|
|
position: sticky;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
/*
|
|
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;
|
|
}
|