mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
174d392e5a
Run `prettier --write "app/assets/stylesheets/**/*.scss" "plugins/**/*.scss"` after making sure you installed it with `yarn` It's recommended to configure your editor to run prettier on file save.
56 lines
847 B
SCSS
56 lines
847 B
SCSS
.admin-reports {
|
|
h3 {
|
|
border-bottom: 1px solid $primary-low;
|
|
margin-bottom: 0.5em;
|
|
padding-bottom: 0.5em;
|
|
}
|
|
|
|
.report-container {
|
|
display: flex;
|
|
|
|
.loading-container {
|
|
width: 100%;
|
|
}
|
|
|
|
.visualization {
|
|
display: flex;
|
|
flex: 4;
|
|
}
|
|
|
|
.filters {
|
|
display: flex;
|
|
flex: 1;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
margin-left: 2em;
|
|
|
|
.date-picker {
|
|
margin: 0;
|
|
width: 195px;
|
|
}
|
|
|
|
.combo-box,
|
|
.date-picker-wrapper,
|
|
.btn {
|
|
width: 100%;
|
|
margin-bottom: 1em;
|
|
}
|
|
}
|
|
|
|
@include small-width {
|
|
flex-direction: column;
|
|
min-width: 100%;
|
|
|
|
.visualization {
|
|
order: 2;
|
|
}
|
|
|
|
.filters {
|
|
order: 1;
|
|
margin: 0;
|
|
align-items: flex-start;
|
|
}
|
|
}
|
|
}
|
|
}
|