fix: refactor breadcrumbs to take page type variants to better match margins

This commit is contained in:
Christel Westerberg
2025-01-03 11:39:24 +01:00
parent 053ef4a1c9
commit 5901cab440
46 changed files with 286 additions and 175 deletions

View File

@@ -1,6 +1,6 @@
.section {
background: var(--Base-Surface-Subtle-Normal);
padding: var(--Spacing-x7) var(--Spacing-x2);
padding: var(--Spacing-x7) 0;
}
.maxWidth {
@@ -8,12 +8,12 @@
display: flex;
justify-content: space-between;
flex-direction: column;
max-width: var(--max-width-content);
max-width: var(--max-width-page);
}
@media screen and (min-width: 767px) {
.section {
padding: var(--Spacing-x9) var(--Spacing-x5);
padding: var(--Spacing-x9) 0;
}
}