fix: remove max-width for section content in non-form contexts like dialogs (#37079)

This commit is contained in:
Priyal208 2026-02-17 12:31:30 +05:30 committed by GitHub
parent 5bb1dffab5
commit 99d1fb18ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,12 +78,15 @@
}
}
}
.section-head,
.section-body {
margin: auto !important;
body:not(.full-width) & {
max-width: var(--page-max-width);
.std-form-layout {
.section-head,
.section-body {
margin: auto !important;
body:not(.full-width) & {
max-width: var(--page-max-width);
}
}
}