mirror of
https://github.com/discourse/discourse.git
synced 2024-12-20 13:13:43 +08:00
17 lines
314 B
SCSS
17 lines
314 B
SCSS
|
@include breakpoint(large) {
|
||
|
.main-chat-outlet.has-side-panel-expanded {
|
||
|
.c-routes.--channel {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.chat-side-panel {
|
||
|
width: 100% !important; // overrides the inline auto width
|
||
|
border: none;
|
||
|
|
||
|
.chat-side-panel-resizer {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|