Fix container max width to use responsive min() and CSS custom properties

This commit is contained in:
2026-03-17 13:46:55 -05:00
parent eb61d3279f
commit bf9c1997ae

View File

@@ -304,7 +304,12 @@ body{
}
.container {
max-width: 1300px;
width: 100%;
max-width: min(90%, var(--container-xl));
margin-left: auto;
margin-right: auto;
padding-left: var(--space-4);
padding-right: var(--space-4);
}
.container,