Feat/LOY-354 L7 Progress Card * feat(LOY-354): Add Trophy icon * fix(LOY-354): include new tierPoints value * feat(LOY-354): L7 Progress Level Card support * refactor(LOY-354): Refactoring of component structure * fix(LOY-354): Remove intl prop drilling * fix(LOY-354): cleanup progress section code Approved-by: Erik Tiekstra
31 lines
446 B
CSS
31 lines
446 B
CSS
.statsContainer {
|
|
display: flex;
|
|
padding: 0 var(--Space-x3);
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
align-self: stretch;
|
|
}
|
|
|
|
.statItem {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x05);
|
|
}
|
|
|
|
.statItem:last-child {
|
|
text-align: right;
|
|
}
|
|
|
|
.statItem:has(.trophyIcon) {
|
|
align-self: end;
|
|
}
|
|
|
|
.label {
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.value {
|
|
color: var(--Text-Accent-Primary);
|
|
word-break: break-all;
|
|
}
|