fix: update breadcrumbs max width for loyalty pages

This commit is contained in:
Chuma McPhoy
2025-01-07 15:56:15 +01:00
parent 501c6be22a
commit 07fc8357c1
2 changed files with 5 additions and 1 deletions

View File

@@ -22,6 +22,10 @@
max-width: var(--max-width-content); max-width: var(--max-width-content);
} }
.pageWidth .list {
max-width: var(--max-width-page);
}
.list { .list {
align-items: center; align-items: center;
display: flex; display: flex;

View File

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