Skip to content

Commit

Permalink
fix(react): add more padding height to instance table
Browse files Browse the repository at this point in the history
  • Loading branch information
jrea committed Aug 17, 2022
1 parent 5b08818 commit d73a16d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/lib/table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const TableWrapper = styled('div', {
}>`
${(props) => ({
marginTop: props.theme.spacing(2),
height: Math.min(props.itemCount * 52 + 10, 600),
height: Math.min(props.itemCount * 52 + 24, 600),
width: '100%',
})}
`;
Expand Down

2 comments on commit d73a16d

@vercel
Copy link

@vercel vercel bot commented on d73a16d Aug 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nile-js – ./

nile-js-theniledev.vercel.app
nile-js.vercel.app
nile-js-git-master-theniledev.vercel.app

@vercel
Copy link

@vercel vercel bot commented on d73a16d Aug 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

react-storybook – ./packages/react

react-storybook-ten.vercel.app
react-storybook-theniledev.vercel.app
react-storybook-git-master-theniledev.vercel.app

Please sign in to comment.