discourse/app/assets/stylesheets/admin/admin_reports.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

40 lines
619 B
SCSS
Vendored

.admin-reports {
.admin-report {
width: 100%;
.report-header {
padding-bottom: 0.5em;
margin-bottom: 1em;
border-bottom: 1px solid var(--primary-low);
}
}
.admin-report-chart .chart-canvas-container .chart-canvas {
height: 400px;
}
}
.mobile-view .admin-reports {
.admin-report {
.body {
flex-direction: column;
.filters {
order: 0;
margin: 0;
width: 100%;
}
.main {
order: 2;
}
.report-alert {
margin: 0;
order: 1;
flex: 1 0 0px;
padding: 1em;
}
}
}
}