fix: Adjust table odd/even colors (#606)

This commit is contained in:
philon-
2025-05-05 17:23:37 +02:00
committed by GitHub
parent 0539b15ddc
commit 170abfcc2f

View File

@@ -146,8 +146,8 @@ export const Table = ({ headings, rows }: TableProps) => {
<tr
key={rowKey}
className={`
bg-white dark:bg-white/10
odd:bg-slate-800/70 dark:even:bg-slate-900/70
bg-white dark:bg-slate-900
odd:bg-slate-200/40 dark:odd:bg-slate-800/40
`}
>
{row.map((item, cellIndex) => {