Skip to content

Commit

Permalink
fix: added white background to key-value-table-cells
Browse files Browse the repository at this point in the history
  • Loading branch information
coderwelsch committed Nov 18, 2024
1 parent 7986ab5 commit a12fe22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const TableKeyValuePairBodyKeyCell = ({
return (
<td
className={classNames(
"headline-400 border-b border-r border-neutral-300 px-2.5 text-neutral-900 first:border-l",
"headline-400 border-b border-r border-neutral-300 bg-neutral-0 px-2.5 text-neutral-900 first:border-l",
className
)}
{...props}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const TableKeyValuePairBodyValueCell = ({
return (
<td
className={classNames(
"border-b border-r border-neutral-300 px-2.5 text-neutral-900",
"border-b border-r border-neutral-300 bg-neutral-0 px-2.5 text-neutral-900",
className
)}
{...props}
Expand Down

0 comments on commit a12fe22

Please sign in to comment.