fix: border color in dark mode

This commit is contained in:
iCrawl
2022-09-18 20:27:04 +02:00
parent 2fc3d86f56
commit 6d43e26676

View File

@@ -29,7 +29,9 @@ export function Table({
{Object.entries(row).map(([colName, val]) => (
<td
key={colName}
className={`border-light-900 border-b px-3 py-2 text-left text-sm ${columnStyles?.[colName] ?? ''}`}
className={`border-light-900 dark:border-dark-100 border-b px-3 py-2 text-left text-sm ${
columnStyles?.[colName] ?? ''
}`}
>
{val}
</td>