20 lines
430 B
CSS
20 lines
430 B
CSS
.benefitValueContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--Spacing-x-half);
|
|
padding: 0 1rem 0 1rem;
|
|
text-wrap: balance;
|
|
}
|
|
|
|
.benefitValue {
|
|
font-size: var(--typography-Body-Bold-fontSize);
|
|
font-weight: var(--typography-Body-Bold-fontWeight);
|
|
}
|
|
|
|
.benefitValueDetails {
|
|
font-size: var(--typography-Footnote-Regular-fontSize);
|
|
text-align: center;
|
|
color: var(--UI-Grey-80);
|
|
}
|