diff --git a/packages/components/src/form/TableInput/TableInput.styles.js b/packages/components/src/form/TableInput/TableInput.styles.js index e459dc93e..3d6846b5f 100644 --- a/packages/components/src/form/TableInput/TableInput.styles.js +++ b/packages/components/src/form/TableInput/TableInput.styles.js @@ -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], }, })); diff --git a/packages/components/src/informative/Table/Table.styles.js b/packages/components/src/informative/Table/Table.styles.js index f94484b2e..6d969f29e 100644 --- a/packages/components/src/informative/Table/Table.styles.js +++ b/packages/components/src/informative/Table/Table.styles.js @@ -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], }, }; }); diff --git a/packages/components/src/informative/Table/TableCell/TableCell.styles.js b/packages/components/src/informative/Table/TableCell/TableCell.styles.js index a9f880594..db36c6f67 100644 --- a/packages/components/src/informative/Table/TableCell/TableCell.styles.js +++ b/packages/components/src/informative/Table/TableCell/TableCell.styles.js @@ -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,