feat(SW-360): Add signup verification route w. tracking for login

This commit is contained in:
Chuma McPhoy
2024-10-03 15:29:45 +02:00
committed by Pontus Dreij
parent 0e0c09dfcd
commit bf8976c24c
17 changed files with 83 additions and 14 deletions

View File

@@ -218,3 +218,15 @@
color: var(--Base-Text-High-contrast);
background-color: var(--Base-Surface-Primary-light-Hover-alt);
}
.signupVerification {
background-color: var(--Base-Button-Primary-Fill-Normal);
color: var(--Base-Button-Inverted-Fill-Normal);
cursor: pointer;
padding: var(--Spacing-x-one-and-half) var(--Spacing-x2);
border-radius: var(--Corner-radius-Rounded);
text-decoration: none;
display: inline-block;
text-align: center;
transition: background-color 0.3s ease;
}

View File

@@ -35,6 +35,7 @@ export const linkVariants = cva(styles.link, {
shortcut: styles.shortcut,
sidebar: styles.sidebar,
tab: styles.tab,
signupVerification: styles.signupVerification,
},
},
defaultVariants: {