24 lines
484 B
CSS
24 lines
484 B
CSS
.rewardValueContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--Space-x05);
|
|
padding: 0 var(--Space-x4) 0 var(--Space-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);
|
|
}
|
|
|
|
.checkIcon {
|
|
display: inline-flex;
|
|
}
|