Browse Source

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

pull/610/head
philon- 1 year ago
committed by GitHub
parent
commit
170abfcc2f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      src/components/generic/Table/index.tsx

4
src/components/generic/Table/index.tsx

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

Loading…
Cancel
Save