fix: update breadcrumbs styling for full width variants

This commit is contained in:
Chuma McPhoy
2025-01-07 16:33:11 +01:00
parent 07fc8357c1
commit cc7461bf3c
2 changed files with 2 additions and 6 deletions

View File

@@ -15,17 +15,13 @@
}
.fullWidth .list {
max-width: var(--max-width-navigation);
max-width: var(--max-width-page);
}
.contentWidth .list {
max-width: var(--max-width-content);
}
.pageWidth .list {
max-width: var(--max-width-page);
}
.list {
align-items: center;
display: flex;

View File

@@ -11,7 +11,7 @@ export const breadcrumbsVariants = cva(styles.breadcrumbs, {
[PageContentTypeEnum.contentPage]: styles.contentWidth,
[PageContentTypeEnum.collectionPage]: styles.contentWidth,
[PageContentTypeEnum.hotelPage]: styles.hotelHeaderWidth,
[PageContentTypeEnum.loyaltyPage]: styles.pageWidth,
[PageContentTypeEnum.loyaltyPage]: styles.fullWidth,
default: styles.fullWidth,
},
},