fix(SW-113): add colors to negative and positive point transactions

This commit is contained in:
Simon Emanuelsson
2024-08-06 14:11:10 +02:00
parent a5dbd38654
commit c94b83464f
7 changed files with 86 additions and 23 deletions

View File

@@ -0,0 +1,12 @@
import { cva } from "class-variance-authority"
import styles from "./row.module.css"
export const awardPointsVariants = cva(styles.td, {
variants: {
variant: {
addition: styles.addition,
negation: styles.negation,
},
},
})