mirror of
https://github.com/discourse/discourse.git
synced 2025-02-10 05:14:59 +00:00
26 lines
359 B
SCSS
26 lines
359 B
SCSS
.full-page-chat {
|
|
#main-chat-outlet.chat-view {
|
|
grid-template-areas:
|
|
"list"
|
|
"footer";
|
|
}
|
|
|
|
.channels-list {
|
|
grid-area: list;
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.c-footer {
|
|
&__item {
|
|
.c-unread-indicator,
|
|
.c-unread-indicator.-urgent {
|
|
margin-left: 1rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.has-full-page-chat div#reply-control {
|
|
display: none;
|
|
}
|