Files
web/components/Loyalty/Blocks/DynamicContent/OverviewTable/LevelSummary/levelSummary.module.css
2024-06-05 13:42:25 +02:00

31 lines
703 B
CSS

.levelSummary {
display: flex;
flex-direction: column;
align-items: center;
gap: var(--Spacing-x2);
}
.levelRequirements {
background-color: var(--Main-Brand-Burgundy);
border-radius: var(--Corner-radius-xLarge);
color: #f7e1d5;
padding: var(--Spacing-x-half) var(--Spacing-x1);
}
.levelSummaryText {
color: var(--Main-Brand-Burgundy);
font-size: var(--typography-Footnote-Regular-fontSize);
line-height: var(--typography-Body-Regular-lineHeight);
margin: 0;
}
@media screen and (min-width: 1367px) {
.levelRequirements {
font-size: var(--typography-Footnote-Regular-fontSize);
}
.levelSummaryText {
font-size: var(--typography-Caption-Regular-fontSize);
}
}