0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-25 13:10:14 +01:00
wagtail/client/scss/layouts/_report.scss
Akash Kumar Sen 71dfb4090b fix overlapping of report filters/table & form submissions
- as of 3.0 - report filters would overflow the viewport in Wagtail
- fix layout issue with form submission lists introduced with filtering changes
- remove invalid css grid-column-start (unused)
- adopt theme variables for all main spacing instead of hard-coded em/rem/px values
- fixes #8929
2022-08-08 22:05:01 +10:00

33 lines
519 B
SCSS

.report {
display: grid;
grid-column-gap: theme('spacing.12');
@include nice-margin();
&__results {
&--text {
margin: 0 theme('spacing.[1.5]') theme('spacing.[1.5]') 0;
+ .status-tag {
margin-inline-start: 0;
}
}
&--comment {
display: block;
}
}
&__actions > div {
float: right;
display: block;
margin-inline-end: theme('spacing.3');
}
@include media-breakpoint-down(md) {
form {
margin-bottom: theme('spacing.3');
}
}
}