feat: add a textDecoration variant to links

This commit is contained in:
Chuma McPhoy
2024-07-08 13:25:00 +02:00
parent 57b424819a
commit 22647710c9
5 changed files with 16 additions and 1 deletions

View File

@@ -46,6 +46,7 @@ export default async function IntroSection({
className={styles.introLink}
target="_blank"
variant="icon"
textDecoration="underline"
color="peach80"
href={tripAdvisor.webUrl}
>
@@ -59,6 +60,7 @@ export default async function IntroSection({
className={styles.introLink}
target="_blank"
color="peach80"
textDecoration="underline"
variant="icon"
href="#"
>

View File

@@ -19,7 +19,6 @@
}
.introLink {
text-decoration: underline !important;
text-decoration-color: var(--Scandic-Peach-80);
width: fit-content;
}