mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 12:33:45 +08:00
82b4a53d29
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.
18 lines
301 B
SCSS
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;
|
|
}
|
|
}
|