From 2b0c5c6c42d0d17557fd7f8a6c300a6b68e79a31 Mon Sep 17 00:00:00 2001 From: luisdralves Date: Mon, 11 Dec 2023 16:14:37 +0000 Subject: [PATCH] Fix footer items overlap --- workspaces/website/src/components/Footer/Footer.tsx | 5 +---- workspaces/website/src/pages/(components)/Footer.tsx | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/workspaces/website/src/components/Footer/Footer.tsx b/workspaces/website/src/components/Footer/Footer.tsx index f9a4216d3c..275ab6a0e7 100644 --- a/workspaces/website/src/components/Footer/Footer.tsx +++ b/workspaces/website/src/components/Footer/Footer.tsx @@ -173,9 +173,7 @@ const Column = ({ title, children, color }: ColumnProps) => { > {title} - - {children} - + {children} ); }; @@ -190,7 +188,6 @@ const FooterLink = ({ children, href, isExternal }: FooterLinkProps) => { { {mainMenuItem.columns?.map((column, columnIndex) => ( {column.blocks?.map((block, blockIndex) => ( - + {block.items?.map((item, itemIndex) => { if ( item.hide_from_footer || @@ -88,7 +88,7 @@ export const Footer = ({ mainMenu, seo }: Props) => { ); })} - + ))} ))}