feat: implement ui on handy shortcuts

This commit is contained in:
Fredrik Thorsson
2024-06-11 08:08:33 +02:00
parent 7c4b8401e9
commit 0b765c3454

View File

@@ -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;
}