Fix grid blowout bug

Bug: T314756
Change-Id: If1a84f5c3606dab7195a9b0a320e416fba702027
This commit is contained in:
bwang 2022-08-08 12:58:31 -05:00 committed by Jdlrobson
parent ea5c4d3735
commit 8772b0065e
1 changed files with 3 additions and 1 deletions

View File

@ -102,7 +102,9 @@
@media ( min-width: @min-width-desktop-wide ) {
.mw-page-container-inner {
grid-template-columns: ~'284px @{width-gutter} 1fr';
/* Use of minmax is important to restrict the maximum grid column width
more information: T314756 */
grid-template-columns: ~'284px @{width-gutter} minmax(0, 1fr)';
}
}