more contrast
This commit is contained in:
parent
17940cae0f
commit
387c19e11a
|
@ -58,7 +58,7 @@ export default function Table({ items, count, headers, actions, offset, setOffse
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{items.map((row, index) => (
|
{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 }) => (
|
{headers.map(({ key, formatter, nowrap = true }) => (
|
||||||
<td
|
<td
|
||||||
key={key}
|
key={key}
|
||||||
|
|
Reference in New Issue