mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 12:03:31 +01:00
fix: border color in dark mode
This commit is contained in:
@@ -29,7 +29,9 @@ export function Table({
|
|||||||
{Object.entries(row).map(([colName, val]) => (
|
{Object.entries(row).map(([colName, val]) => (
|
||||||
<td
|
<td
|
||||||
key={colName}
|
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}
|
{val}
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user