Fix/SW-3328 campaign page design fix * fix(SW-3328): align essentials text * fix(SW-3328): campaign page design fix * fix(SW-3328): update hero width * fix(SW-3328): change burgundy code text Approved-by: Erik Tiekstra
25 lines
657 B
TypeScript
25 lines
657 B
TypeScript
import { cva } from "class-variance-authority"
|
|
|
|
import styles from "./breadcrumbs.module.css"
|
|
|
|
export const breadcrumbsVariants = cva(styles.breadcrumbs, {
|
|
variants: {
|
|
color: {
|
|
transparent: styles.transparent,
|
|
"Surface/Secondary/Default": styles.surfaceSecondaryDefault,
|
|
"Surface/Primary/OnSurface/Default":
|
|
styles.surfacePrimaryOnSurfaceDefault,
|
|
"Background/Primary": styles.backgroundPrimary,
|
|
},
|
|
size: {
|
|
pageWidth: styles.pageWidth,
|
|
headerWidth: styles.headerWidth,
|
|
contentWidth: styles.contentWidth,
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
color: "transparent",
|
|
size: "pageWidth",
|
|
},
|
|
})
|