mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 09:33:54 +01:00
5112c0eaa8
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
22 lines
357 B
SCSS
22 lines
357 B
SCSS
.w-form-width {
|
|
@include max-form-width();
|
|
}
|
|
|
|
@include media-breakpoint-up(md) {
|
|
.side-panel-open {
|
|
.tab-content {
|
|
width: theme('width.[2/3]');
|
|
}
|
|
}
|
|
}
|
|
|
|
.fields {
|
|
// Apply the desired form width for legacy `fields` container.
|
|
max-width: $max-form-width;
|
|
|
|
// Remove any spacing in legacy fields markup.
|
|
> li {
|
|
padding: 0;
|
|
}
|
|
}
|