mirror of
https://github.com/discourse/discourse.git
synced 2024-12-21 13:18:23 +08:00
b0be89cb17
It's been set to this value as a workaround for long thread titles, but we now have standalone thread titles in the thread body which makes this not needed. People had troubles understanding why they couldn't resize more the thread panel.
23 lines
411 B
SCSS
23 lines
411 B
SCSS
#main-chat-outlet.chat-view {
|
|
min-height: 0;
|
|
display: grid;
|
|
grid-template-areas: "main threads";
|
|
grid-template-columns: 1fr auto;
|
|
}
|
|
|
|
.chat-side-panel {
|
|
box-sizing: border-box;
|
|
border-left: 1px solid var(--primary-low);
|
|
position: relative;
|
|
min-width: 150px;
|
|
|
|
&__list {
|
|
flex-grow: 1;
|
|
padding: 0 1.5em 1em;
|
|
}
|
|
}
|
|
|
|
#main-chat-outlet .chat-side-panel .c-navbar__title {
|
|
margin-left: 0;
|
|
}
|