Skip to content

Commit

Permalink
fix(mobile): table list - fix rows overlapping
Browse files Browse the repository at this point in the history
  • Loading branch information
alter-eggo committed Dec 26, 2024
1 parent 79d7d6d commit 6441bb9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export function PoolListTable({ pools, count, loading }: Props) {
left={{ base: '-4px', sm: '0' }}
p={{ base: '0', sm: '0' }}
position="relative"
pr={{ base: 'md' }}
w={{ base: '100vw', lg: 'full' }}
>
<PaginatedTable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ export function PortfolioTable() {
left={{ base: '-4px', sm: '0' }}
p={{ base: '0', sm: '0' }}
position="relative"
pr={{ base: 'md' }}
w={{ base: '100vw', lg: 'full' }}
>
<PaginatedTable
Expand Down Expand Up @@ -195,6 +196,7 @@ export function PortfolioTable() {
/>
)
}}
pr={{ base: 'md' }}

Check warning on line 199 in packages/lib/modules/portfolio/PortfolioTable/PortfolioTable.tsx

View workflow job for this annotation

GitHub Actions / Lint

Props should be sorted alphabetically
showPagination={false}
w={{ base: '100vw', lg: 'full' }}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export function VoteListTable({ voteList, count, loading }: Props) {
left={{ base: '-4px', sm: '0' }}
p={{ base: '0', sm: '0' }}
position="relative"
pr={{ base: 'md' }}
w={{ base: '100vw', lg: 'full' }}
>
<PaginatedTable
Expand Down

0 comments on commit 6441bb9

Please sign in to comment.