discourse/app/assets/stylesheets/common/admin/admin_config_area.scss
Osama Sayegh fed9055818
DEV: Remove admin-revamp and introduce foundations for admin config (#27293)
This commit removes the `/admin-revamp` routes which were introduced as a part of an experiment to revamp the admin pages. We still want to improve the admin/staff experience, but we're going to do them within the existing `/admin` routes instead of introducing a completely new route.

Our initial efforts to improve the Discourse admin experience is this commit which introduces the foundation for a new subroute `/admin/config` which will house various new pages for configuring Discourse. The first new page (or "config area") will be `/admin/config/about` that will house all the settings and controls for configuring the `/about` page of Discourse.

Internal topic: t/128544
2024-06-03 10:18:14 +03:00

13 lines
187 B
SCSS

.admin-config-area {
display: grid;
grid-template-columns: 2fr 1fr;
column-gap: 1em;
&__primary-content {
background: red;
}
&__help-inset {
background: green;
}
}