mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-22 07:14:18 +08:00
Having them under `mobile/` means they're loaded for all users. Better
to put them in the admin-only bundle, and scope with `.mobile-view`
See also: ffdc97f372
24 lines
405 B
SCSS
Vendored
24 lines
405 B
SCSS
Vendored
.admin-flags__header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
|
|
.btn-primary {
|
|
align-self: center;
|
|
}
|
|
|
|
h3 {
|
|
margin-top: 1em;
|
|
font-size: var(--font-0);
|
|
font-weight: normal;
|
|
flex-basis: 100%;
|
|
}
|
|
}
|
|
|
|
.mobile-view .admin-contents table.grid tr.admin-flag-item {
|
|
grid-template-columns: auto min-content;
|
|
|
|
.d-toggle-switch {
|
|
margin-right: 0;
|
|
}
|
|
}
|