mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 22:33:55 +08:00
33 lines
504 B
SCSS
33 lines
504 B
SCSS
|
.chat-channel-members {
|
||
|
width: 50%;
|
||
|
min-width: 320px;
|
||
|
|
||
|
&__filter {
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
|
||
|
&__list {
|
||
|
display: flex;
|
||
|
margin: 0;
|
||
|
flex-direction: column;
|
||
|
gap: 0.5rem;
|
||
|
|
||
|
&-item {
|
||
|
display: flex;
|
||
|
gap: 0.5rem;
|
||
|
list-style: none;
|
||
|
border-bottom: 1px solid var(--primary-low);
|
||
|
height: 42px;
|
||
|
align-items: center;
|
||
|
|
||
|
&.-no-results {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
&:last-child {
|
||
|
border-bottom: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|