Skip to content

Commit

Permalink
Fix footer menu spacing between blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
igalst committed Feb 14, 2024
1 parent cd1e5a1 commit 53aa35a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workspaces/website/src/pages/(components)/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const Footer = ({ mainMenu, seo }: Props) => {
// width={mainMenuItem.title === "Learn" ? "350px" : "auto"}
>
{mainMenuItem.columns?.map((column, columnIndex) => (
<Box key={columnIndex}>
<Stack key={columnIndex} spacing="4">
{column.blocks?.map((block, blockIndex) => (
<Stack key={blockIndex} spacing="4">
{block.items?.map((item, itemIndex) => {
Expand Down Expand Up @@ -94,7 +94,7 @@ export const Footer = ({ mainMenu, seo }: Props) => {
})}
</Stack>
))}
</Box>
</Stack>
))}
</Box>
)}
Expand Down

0 comments on commit 53aa35a

Please sign in to comment.