mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 19:13:47 +08:00
42801c950f
This PR is a first step towards private groups. It redesigns settings/members area of a channel and also drops the "about" page which is now mixed into settings. This commit is also: - introducing chat-form, a small DSL to create forms, ideally I would want something in core for this - introducing a DToggleSwitch page object component to simplify testing toggles - migrating various components to gjs
28 lines
432 B
SCSS
28 lines
432 B
SCSS
.chat-channel-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
padding: 1rem;
|
|
|
|
&__nav {
|
|
.nav-pills {
|
|
margin: 0;
|
|
padding-bottom: 1rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Info header
|
|
.chat-channel-info-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
padding: 1rem;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.chat-channel-info-header__title {
|
|
font-size: var(--font-up-2);
|
|
margin: 0;
|
|
}
|