Skip to content

Commit

Permalink
fix(Table): Rows and Cell padding
Browse files Browse the repository at this point in the history
  • Loading branch information
johan-fx committed Jan 5, 2024
1 parent 80ff04a commit 127b28b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const TableInputStyles = createStyles((theme, { hasError, disabled, rowStyles })
sortIcon: {
color: theme.colors.ui01,
cursor: 'grab',
paddingTop: theme.spacing[2],
paddingTop: theme.spacing[3],
},
}));

Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/informative/Table/Table.styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const TableStyles = createStyles((theme, { disabled, headerStyles = {} } = {}) =
sortIcon: {
color: theme.colors.ui01,
cursor: 'grab',
paddingTop: theme.spacing[2],
paddingTop: theme.spacing[3],
},
};
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const TableCellStyles = createStyles((theme, { active }) => {
return {
root: {
...getFontProductive(theme.fontSizes['2'], 400),
...getPaddings(theme.spacing['2'], theme.spacing['3']),
...getPaddings(theme.spacing['3'], theme.spacing['3']),
WebkitFontSmoothing: 'antialiased',
backgroundColor: active ? theme.colors.interactive01v0 : 'transparent',
color: theme.colors.text01,
Expand Down

0 comments on commit 127b28b

Please sign in to comment.