fix: add hotel header to enter details flow

This commit is contained in:
Christel Westerberg
2024-11-27 13:23:36 +01:00
parent 6f8092d6ec
commit f5990998db
9 changed files with 128 additions and 95 deletions

View File

@@ -265,6 +265,10 @@ a.default {
color: var(--Base-Button-Text-On-Fill-Normal);
}
.baseTextInverted {
color: var(--Base-Button-Primary-On-Fill-Normal);
}
.baseText:active,
.baseText:focus,
.baseText:hover {

View File

@@ -10,6 +10,7 @@ export const buttonVariants = cva(styles.btn, {
secondary: styles.secondary,
tertiary: styles.tertiary,
text: styles.text,
textInverted: styles.text,
},
size: {
small: styles.small,
@@ -140,5 +141,10 @@ export const buttonVariants = cva(styles.btn, {
intent: "text",
theme: "base",
},
{
className: styles.baseTextInverted,
intent: "textInverted",
theme: "base",
},
],
})