From 0b765c34542726beab688dd56d0f28d37839a075 Mon Sep 17 00:00:00 2001 From: Fredrik Thorsson Date: Tue, 11 Jun 2024 08:08:33 +0200 Subject: [PATCH] feat: implement ui on handy shortcuts --- .../Blocks/Shortcuts/shortcuts.module.css | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/components/MyPages/Blocks/Shortcuts/shortcuts.module.css b/components/MyPages/Blocks/Shortcuts/shortcuts.module.css index 01bf3318c..a40f4d0eb 100644 --- a/components/MyPages/Blocks/Shortcuts/shortcuts.module.css +++ b/components/MyPages/Blocks/Shortcuts/shortcuts.module.css @@ -6,4 +6,25 @@ .links { background-color: var(--Scandic-Brand-Warm-White); border-radius: var(--Corner-radius-xLarge); + display: grid; + border: 1px solid var(--Base-Border-Subtle, #e3d9d1); +} + +.link { + align-items: center; + border-bottom: 0.5px solid var(--Base-Border-Subtle, #e3d9d1); + color: var(--Theme-Primary-Light-On-Surface-Text); + display: flex; + font-family: var(--typography-Body-Regular-fontFamily); + font-size: var(--typography-Body-Regular-fontSize); + font-weight: 500; + justify-content: space-between; + line-height: 1.5rem; + padding: 1.5rem; + text-decoration: none; + letter-spacing: var(--typography-Body-Regular-letterSpacing); +} + +.link:last-child { + border-bottom: none; }