From b8897d21d85b37755604ba2107c5cc89731a3111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Ara=C3=BAjo=20=5BSSW=5D?= Date: Wed, 8 Jan 2025 18:17:14 -0300 Subject: [PATCH 01/15] Improve menu look and feel in mid-sized screens (avoid line breaks and overlaps)) --- lib/components/DesktopMenu/MenuItemLink.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/DesktopMenu/MenuItemLink.tsx b/lib/components/DesktopMenu/MenuItemLink.tsx index d450bde..0a72003 100644 --- a/lib/components/DesktopMenu/MenuItemLink.tsx +++ b/lib/components/DesktopMenu/MenuItemLink.tsx @@ -11,7 +11,7 @@ export const MenuItemLink = ({ name, href }: MenuItemLinkProps) => { return ( {name} From 77c54a133923cf5dc5c1a770c25f12a55948d8f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Ara=C3=BAjo=20=5BSSW=5D?= Date: Wed, 8 Jan 2025 18:23:05 -0300 Subject: [PATCH 02/15] reduced tagline --- lib/components/MegaMenuLayout/MegaMenuLayout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/components/MegaMenuLayout/MegaMenuLayout.tsx b/lib/components/MegaMenuLayout/MegaMenuLayout.tsx index ef19644..b81290e 100644 --- a/lib/components/MegaMenuLayout/MegaMenuLayout.tsx +++ b/lib/components/MegaMenuLayout/MegaMenuLayout.tsx @@ -88,8 +88,8 @@ const MegaMenuContents: React.FC = ({ {tagline && ( -
- {tagline} +
+ {tagline}
)} {title && ( From 77349e57702bf5e8e7906f64776fa8f3bc699387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Ara=C3=BAjo=20=5BSSW=5D?= Date: Wed, 8 Jan 2025 18:29:04 -0300 Subject: [PATCH 03/15] removed gap between text and icon --- lib/components/DesktopMenu/MenuItemWithSubmenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/DesktopMenu/MenuItemWithSubmenu.tsx b/lib/components/DesktopMenu/MenuItemWithSubmenu.tsx index 8481f5f..d1fe8c7 100644 --- a/lib/components/DesktopMenu/MenuItemWithSubmenu.tsx +++ b/lib/components/DesktopMenu/MenuItemWithSubmenu.tsx @@ -25,7 +25,7 @@ export const MenuItemWithSubmenu: React.FC = ({ <> From 16d60b20ea8456f4c06efbc228dd300b95687e08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Ara=C3=BAjo=20=5BSSW=5D?= Date: Wed, 8 Jan 2025 18:30:30 -0300 Subject: [PATCH 04/15] Avoid line break on CONTACT US button --- lib/components/PhoneButton/PhoneButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/PhoneButton/PhoneButton.tsx b/lib/components/PhoneButton/PhoneButton.tsx index 0b50503..a033a63 100644 --- a/lib/components/PhoneButton/PhoneButton.tsx +++ b/lib/components/PhoneButton/PhoneButton.tsx @@ -30,7 +30,7 @@ export const PhoneButton = ({ className }: PhoneButtonProps) => { From 1dd8c71572144e56cb902fc25c8e4d308a882e00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Ara=C3=BAjo=20=5BSSW=5D?= Date: Wed, 8 Jan 2025 18:33:41 -0300 Subject: [PATCH 05/15] little less padding for the search icon --- lib/components/Search/Search.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/Search/Search.tsx b/lib/components/Search/Search.tsx index f6c953f..12b5fb5 100644 --- a/lib/components/Search/Search.tsx +++ b/lib/components/Search/Search.tsx @@ -43,7 +43,7 @@ export const Search: React.FC = ({ return ( <>
-
+
{sidebarItems?.map((sideBarItem, i) => (
= ({ className, children }) => { return ( -

+

{children}

); From 0a25efbce82960f6d64c04a9b409c1bbf3b62722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Ara=C3=BAjo=20=5BSSW=5D?= Date: Wed, 8 Jan 2025 18:54:57 -0300 Subject: [PATCH 11/15] Update SubMenuGroup.tsx --- lib/components/SubMenuGroup/SubMenuGroup.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/SubMenuGroup/SubMenuGroup.tsx b/lib/components/SubMenuGroup/SubMenuGroup.tsx index ee7150c..792b388 100644 --- a/lib/components/SubMenuGroup/SubMenuGroup.tsx +++ b/lib/components/SubMenuGroup/SubMenuGroup.tsx @@ -50,7 +50,7 @@ export const SubMenuGroup: React.FC = ({
-
+
{sidebarItems?.map((sideBarItem, i) => (
Date: Wed, 8 Jan 2025 18:57:22 -0300 Subject: [PATCH 12/15] reduce space between icon and text --- lib/components/SubMenuGroup/SubMenuGroup.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/SubMenuGroup/SubMenuGroup.tsx b/lib/components/SubMenuGroup/SubMenuGroup.tsx index 792b388..f42dab4 100644 --- a/lib/components/SubMenuGroup/SubMenuGroup.tsx +++ b/lib/components/SubMenuGroup/SubMenuGroup.tsx @@ -125,7 +125,7 @@ const LinkItem: React.FC<{ link: NavMenuColumnGroupItem }> = ({ { From b1748bc8b0aec96062e22e68f24864231b33a5fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Ara=C3=BAjo=20=5BSSW=5D?= Date: Wed, 8 Jan 2025 19:00:12 -0300 Subject: [PATCH 13/15] changed class order --- lib/components/PhoneButton/PhoneButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/PhoneButton/PhoneButton.tsx b/lib/components/PhoneButton/PhoneButton.tsx index 930bdf6..a28bcf9 100644 --- a/lib/components/PhoneButton/PhoneButton.tsx +++ b/lib/components/PhoneButton/PhoneButton.tsx @@ -30,7 +30,7 @@ export const PhoneButton = ({ className }: PhoneButtonProps) => { From 2efd183b8843277104461deac60db7619fb428fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Ara=C3=BAjo=20=5BSSW=5D?= Date: Wed, 8 Jan 2025 19:44:03 -0300 Subject: [PATCH 14/15] Update SubMenuGroup.tsx --- lib/components/SubMenuGroup/SubMenuGroup.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/SubMenuGroup/SubMenuGroup.tsx b/lib/components/SubMenuGroup/SubMenuGroup.tsx index f42dab4..c2080d6 100644 --- a/lib/components/SubMenuGroup/SubMenuGroup.tsx +++ b/lib/components/SubMenuGroup/SubMenuGroup.tsx @@ -50,7 +50,7 @@ export const SubMenuGroup: React.FC = ({
-
+
{sidebarItems?.map((sideBarItem, i) => (
Date: Wed, 8 Jan 2025 19:54:12 -0300 Subject: [PATCH 15/15] Update PhoneButton.tsx --- lib/components/PhoneButton/PhoneButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/PhoneButton/PhoneButton.tsx b/lib/components/PhoneButton/PhoneButton.tsx index a28bcf9..e499fae 100644 --- a/lib/components/PhoneButton/PhoneButton.tsx +++ b/lib/components/PhoneButton/PhoneButton.tsx @@ -30,7 +30,7 @@ export const PhoneButton = ({ className }: PhoneButtonProps) => {