Feat/SW-1066 wellness subpage * feat(SW-1066): added wellness subpage Approved-by: Fredrik Thorsson Approved-by: Matilda Landström
27 lines
964 B
TypeScript
27 lines
964 B
TypeScript
import { cva } from "class-variance-authority"
|
|
|
|
import styles from "./breadcrumbs.module.css"
|
|
|
|
import { PageContentTypeEnum } from "@/types/requests/contentType"
|
|
|
|
export const breadcrumbsVariants = cva(styles.breadcrumbs, {
|
|
variants: {
|
|
variant: {
|
|
[PageContentTypeEnum.accountPage]: styles.fullWidth,
|
|
[PageContentTypeEnum.contentPage]: styles.contentWidth,
|
|
[PageContentTypeEnum.collectionPage]: styles.contentWidth,
|
|
[PageContentTypeEnum.destinationOverviewPage]: styles.fullWidth,
|
|
[PageContentTypeEnum.destinationCountryPage]: styles.fullWidth,
|
|
[PageContentTypeEnum.destinationCityPage]: styles.fullWidth,
|
|
[PageContentTypeEnum.hotelPage]: styles.headerWidth,
|
|
[PageContentTypeEnum.loyaltyPage]: styles.fullWidth,
|
|
[PageContentTypeEnum.startPage]: styles.contentWidth,
|
|
hotelSubpage: styles.contentWidth,
|
|
default: styles.fullWidth,
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: "default",
|
|
},
|
|
})
|