Skip to content

Commit

Permalink
fix: border color in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
iCrawl committed Sep 18, 2022
1 parent 2fc3d86 commit 6d43e26
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/website/src/components/Table.tsx
Expand Up @@ -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>
Expand Down

1 comment on commit 6d43e26

@vercel
Copy link

@vercel vercel bot commented on 6d43e26 Sep 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.