discourse/app/assets/stylesheets/admin/flags.scss
David Taylor fba7768cb1
DEV: Move mobile-specific admin styles to admin css bundle (#31529)
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
2025-02-27 17:20:55 +00:00

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