discourse/plugins/chat/assets/stylesheets/desktop/chat-side-panel.scss
Joffrey JAFFEUX b0be89cb17
FIX: lower thread panel min-width (#30158)
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.
2024-12-06 19:18:45 +01:00

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;
}