Files
web/components/MyPages/Blocks/Shortcuts/shortcuts.module.css
2024-06-13 12:07:32 +02:00

31 lines
735 B
CSS

.shortcuts {
display: grid;
gap: var(--Spacing-x4);
}
.links {
background-color: var(--Scandic-Brand-Warm-White);
border-radius: var(--Corner-radius-xLarge);
display: grid;
border: 1px solid var(--Base-Border-Subtle);
}
.link {
align-items: center;
border-bottom: 0.5px solid var(--Base-Border-Subtle);
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;
}