Skip to content

Commit

Permalink
fix max-height default
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSonOfThomp committed Jan 18, 2024
1 parent 90d8376 commit 0ba8d2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/table/src/Cell/Cell.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export const cellContentTransitionStateStyles = (
entered: css`
opacity: 1;
min-height: ${standardCellHeight}px;
max-height: ${height + 'px' ?? 'unset'};
max-height: ${height ? height + 'px' : 'unset'};
`,
entering: _hiddenStyles,
exiting: _hiddenStyles,
Expand Down

0 comments on commit 0ba8d2a

Please sign in to comment.