Skip to content

Commit

Permalink
Fix bottom margin (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrederikBolding authored Feb 29, 2024
1 parent 86eb5db commit c679847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ChainList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const ChainList = () => {
const filteredChains = chains.filter(handleFiltering);

return (
<SimpleGrid minChildWidth="300px" spacing={4}>
<SimpleGrid minChildWidth="300px" spacing={4} mb="8">
{filteredChains.map((c) => (
<Chain key={c.id} {...c} />
))}
Expand Down

0 comments on commit c679847

Please sign in to comment.