mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 17:36:49 +01:00
eac5e0bc2c
Co-authored-by: LB Johnston <mail@lb.ee>
37 lines
519 B
SCSS
37 lines
519 B
SCSS
.report {
|
|
display: grid;
|
|
grid-column-gap: 50px;
|
|
|
|
&:not(&--no-margin) {
|
|
@include nice-padding();
|
|
}
|
|
|
|
&__results {
|
|
grid-column-start: col-start 1 col-end 2;
|
|
|
|
&--text {
|
|
margin: 0 0.5em 0.5em 0;
|
|
|
|
+ .status-tag {
|
|
margin-inline-start: 0;
|
|
}
|
|
}
|
|
|
|
&--comment {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
&__actions > div {
|
|
float: right;
|
|
display: block;
|
|
margin-inline-end: 10px;
|
|
}
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
form {
|
|
margin-bottom: 1em;
|
|
}
|
|
}
|
|
}
|