Skip to content

Commit

Permalink
Fixed the overflow height of the Developers page's table (#6963)
Browse files Browse the repository at this point in the history
Ref: #6962

As of now, if user has more than 20 API keys or webhooks, whole page has
scroll, when for the end user (UX) it'd be better if each table had it's
own scroll.
  • Loading branch information
ffshreyansh authored Sep 10, 2024
1 parent b3b594e commit fbe9e2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import { TableRow } from '@/ui/layout/table/components/TableRow';

const StyledTableBody = styled(TableBody)`
border-bottom: 1px solid ${({ theme }) => theme.border.color.light};
max-height: 260px;
overflow-y: auto;
`;

const StyledTableRow = styled(TableRow)`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import { TableRow } from '@/ui/layout/table/components/TableRow';

const StyledTableBody = styled(TableBody)`
border-bottom: 1px solid ${({ theme }) => theme.border.color.light};
max-height: 260px;
overflow-y: auto;
`;

const StyledTableRow = styled(TableRow)`
Expand Down

0 comments on commit fbe9e2c

Please sign in to comment.