discourse/plugins/chat/assets/stylesheets/common/chat-side-panel.scss
Joffrey JAFFEUX 82b4a53d29
FIX: reverts part of thread css (#20286)
This css was causing the view on mobile to take more space than the available width. This was particularly visible with uploads due to a bug preventing the overflow, this is also fixed.
2023-02-14 15:38:26 +01:00

18 lines
301 B
SCSS

#main-chat-outlet.chat-view {
&.has-side-panel-expanded {
grid-template-columns: 3fr 2fr;
}
}
.chat-side-panel {
grid-area: threads;
min-height: 100%;
box-sizing: border-box;
border-left: 1px solid var(--primary-medium);
&__list {
flex-grow: 1;
padding: 0 1.5em 1em;
}
}