3
0
mirror of https://git.coop/cotech/website.git synced 2025-12-18 15:17:32 +00:00

Apply maximum size to sections

This commit is contained in:
Chris Lowis
2025-12-15 16:50:20 +00:00
parent e879ceb941
commit fedff4f6b8

View File

@ -46,7 +46,8 @@ div,
header, header,
nav, nav,
main, main,
footer { footer,
section {
max-inline-size: none; max-inline-size: none;
} }
@ -173,8 +174,11 @@ img.rounded {
border-radius: var(--space-sm); border-radius: var(--space-sm);
} }
section, footer { section, footer, header {
padding: var(--space-sm); padding: var(--space-sm);
max-inline-size: 1024px;
margin-left: auto;
margin-right: auto;
} }
.box { .box {