Skip to content

Commit

Permalink
fix(Table): fix row height and cell padding
Browse files Browse the repository at this point in the history
  • Loading branch information
ej9x committed Feb 22, 2019
1 parent 762afa0 commit 5dd6810
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Table/TableBodyCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const [TableBodyCellTag, theme] = createThemeTag(name, {
alignItems: 'center',
wordBreak: 'break-all',

padding: '0 16px',
padding: '8px 16px',
},
});

Expand Down
2 changes: 1 addition & 1 deletion src/components/Table/TableBodyRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const [TableBodyRowTag, theme] = createThemeTag(name, ({ COLORS }: *) => ({
root: {
display: 'grid',

height: '60px',
minHeight: '60px',
borderBottom: `1px solid ${COLORS.PRIMARY_BORDER_COLOR}`,
},
modifiers: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Table/TableBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type TableBulderProps = {
/** Text of the action or component to replace standart action button*/
action?: React$Node,
/** Callback to pass state of the table */
onChange: TableState => void,
onChange?: TableState => void,
/** States of the table sort and selections. */
tableState: TableState,
/** Options to enable row selections */
Expand Down

0 comments on commit 5dd6810

Please sign in to comment.