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