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

29 lines
486 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);
display: flex;
justify-content: space-between;
padding: 1.5rem;
}
.link:last-child {
border-bottom: none;
}
.arrowRight {
height: 24px;
width: 24px;
}