From a790a5206794894dc3572711491e8c72c42010b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Mon, 26 May 2025 10:35:51 +0000 Subject: [PATCH] Merged in fix/SW-2725 (pull request #2217) fix(SW-2725): change to correct icon color (burgundy) * fix(SW-2725): change to correct icon color (burgundy) Approved-by: Erik Tiekstra --- .../Blocks/ShortcutsList/ShortcutsListItems/index.tsx | 6 +++--- .../ShortcutsListItems/shortcutsListItems.module.css | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/scandic-web/components/Blocks/ShortcutsList/ShortcutsListItems/index.tsx b/apps/scandic-web/components/Blocks/ShortcutsList/ShortcutsListItems/index.tsx index 7aeaaa391..35e0a552e 100644 --- a/apps/scandic-web/components/Blocks/ShortcutsList/ShortcutsListItems/index.tsx +++ b/apps/scandic-web/components/Blocks/ShortcutsList/ShortcutsListItems/index.tsx @@ -1,7 +1,7 @@ import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" +import { Typography } from "@scandic-hotels/design-system/Typography" import Link from "@/components/TempDesignSystem/Link" -import Body from "@/components/TempDesignSystem/Text/Body" import styles from "./shortcutsListItems.module.css" @@ -24,9 +24,9 @@ export default function ShortcutsListItems({ variant="shortcut" className={styles.link} > - + {shortcut.text || shortcut.title} - + diff --git a/apps/scandic-web/components/Blocks/ShortcutsList/ShortcutsListItems/shortcutsListItems.module.css b/apps/scandic-web/components/Blocks/ShortcutsList/ShortcutsListItems/shortcutsListItems.module.css index 3cad8f412..1da047800 100644 --- a/apps/scandic-web/components/Blocks/ShortcutsList/ShortcutsListItems/shortcutsListItems.module.css +++ b/apps/scandic-web/components/Blocks/ShortcutsList/ShortcutsListItems/shortcutsListItems.module.css @@ -12,3 +12,7 @@ .listItem:last-child { border-bottom: none; } + +.link { + color: var(--Text-Interactive-Default); +}