Skip to content

Commit

Permalink
fix: colors and padding of group row
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Apr 22, 2021
1 parent 9d8e72c commit 4388e5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion ui/blocks/src/TestsResults/BaseTestsResults.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ export const BaseTestsResults: FC<BaseTestsResultsProps> = ({
}
return (
<Table<TestRow>
sx={{ td: { py: 2 } }}
itemsLabel="tests"
sorting={true}
data={data}
Expand Down
6 changes: 3 additions & 3 deletions ui/components/src/ThemeContext/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ export const theme: ControlsTheme = {
},
th: {
border: 'none',
py: 2,
py: 3,
pr: 2,
pl: 3,
},
Expand All @@ -379,13 +379,13 @@ export const theme: ControlsTheme = {
color: 'text',
},
td: {
py: 3,
py: 2,
px: 3,
borderBottom: 0,
},
tdgroup: {
lineHeight: '24px',
background: '#fafbfc',
bg: 'gray',
whiteSpace: 'nowrap',
py: 3,
fontWeight: 'bold',
Expand Down

0 comments on commit 4388e5a

Please sign in to comment.