Skip to content

Commit 8f0b5c4

Browse files
authored
fix: Tr background color
1 parent 9351a24 commit 8f0b5c4

File tree

1 file changed

+1
-2
lines changed
  • packages/paste-core/components/table/src

1 file changed

+1
-2
lines changed

packages/paste-core/components/table/src/Tr.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ const Tr = React.forwardRef<HTMLTableRowElement, TrProps>(
1212
{...safelySpreadBoxProps(props)}
1313
ref={ref}
1414
as="tr"
15-
backgroundColor="colorBackgroundWeakest"
1615
element={element}
1716
verticalAlign={verticalAlign}
18-
_even={{ backgroundColor: striped ? "colorBackgroundRowStriped" : "transparent" }}
17+
_even={{ backgroundColor: striped ? "colorBackgroundRowStriped" : "colorBackgroundWeakest" }}
1918
_last={{ borderWidth: "borderWidth0" }}
2019
/>
2120
);

0 commit comments

Comments
 (0)