Skip to content

Commit

Permalink
fix: table header styling
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Dec 6, 2020
1 parent 8a577b2 commit 6a522aa
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ui/components/src/ThemeContext/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,8 @@ export const theme: ControlsTheme = {
},
th: {
border: 'none',
px: 2,
py: 2,
pr: 2,
pl: 3,
},
tbody: {
Expand All @@ -339,8 +340,8 @@ export const theme: ControlsTheme = {
},
},
thead: {
borderBottom: (t: Theme): string => ` 1px solid ${t.colors?.shadow}`,
backgroundColor: 'muted',
borderBottom: (t: Theme): string => ` 2px solid ${t.colors?.shadow}`,
backgroundColor: 'background',
color: 'text',
},
td: {
Expand Down

0 comments on commit 6a522aa

Please sign in to comment.