mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 23:45:59 +08:00
40 lines
591 B
SCSS
40 lines
591 B
SCSS
.c-channel-info {
|
|
display: flex;
|
|
padding: 1rem;
|
|
flex-direction: column;
|
|
|
|
.chat-message-creator__container {
|
|
width: 100%;
|
|
}
|
|
|
|
&__nav {
|
|
.nav-pills {
|
|
margin: 0;
|
|
padding-bottom: 1rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.c-channel-members__add-members {
|
|
display: flex;
|
|
gap: 1rem;
|
|
|
|
.chat-message-creator-container {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
// Info header
|
|
.c-channel-info-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
padding: 1rem;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.c-channel-info-header__title {
|
|
font-size: var(--font-up-2);
|
|
margin: 0;
|
|
}
|