Feat/CJ-17 points expiration table * feat(CJ-17): Added point expiration table and refactored to use Table component * feat(CJ-17): Use Table component inside Row * fix(CJ-117): Added missing css class and update date formatting * fix(CJ-117): Added copy of membershipLevel route with a protectedProcedure Approved-by: Christel Westerberg
24 lines
414 B
CSS
24 lines
414 B
CSS
.awardPoints {
|
|
color: var(--Base-Text-High-contrast);
|
|
}
|
|
|
|
.addition {
|
|
color: var(--Secondary-Light-On-Surface-Accent);
|
|
}
|
|
|
|
.addition::before {
|
|
color: var(--Secondary-Light-On-Surface-Accent);
|
|
content: "+";
|
|
margin-right: var(--Spacing-x-half);
|
|
}
|
|
|
|
.negation {
|
|
color: var(--Base-Text-Accent);
|
|
}
|
|
|
|
.negation::before {
|
|
color: var(--Base-Text-Accent);
|
|
content: "-";
|
|
margin-right: var(--Spacing-x-half);
|
|
}
|