From 49ef0691ec25fa2842ecf9c42fcd4520177ca6d8 Mon Sep 17 00:00:00 2001 From: Leticia Dias Date: Mon, 27 Oct 2025 21:25:52 -0300 Subject: [PATCH] fix(navbar): adjusted height and width of modal --- src/components/ui/menuModal/menuModal.tsx | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/components/ui/menuModal/menuModal.tsx b/src/components/ui/menuModal/menuModal.tsx index 6f2ffaf..0818f17 100644 --- a/src/components/ui/menuModal/menuModal.tsx +++ b/src/components/ui/menuModal/menuModal.tsx @@ -20,7 +20,7 @@ export function MenuModal({ isOpen, onClose, routes }: MenuModalProps) { return (
-
+
-
    +
      {routes.map(({ path, label }) => (
    • {label}
    • ))}
    - -
);