more contrast

This commit is contained in:
Karol Wypchlo 2021-02-19 16:49:56 +01:00
parent 17940cae0f
commit 387c19e11a
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ export default function Table({ items, count, headers, actions, offset, setOffse
</thead>
<tbody>
{items.map((row, index) => (
<tr className={index % 2 ? "bg-white" : "bg-gray-50"} key={index}>
<tr className={index % 2 ? "bg-white" : "bg-gray-100"} key={index}>
{headers.map(({ key, formatter, nowrap = true }) => (
<td
key={key}