diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 67b8c74..1c49b84 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -3,7 +3,7 @@ import { Home, MessageSquare, Mail } from "lucide-react"; export const Navbar = () => { const getNavClass = ({ isActive }: { isActive: boolean }) => - `flex items-center gap-2 px-4 py-2 rounded-md transition-colors ${ + `flex items-center gap-1.5 px-2 sm:px-4 py-2 rounded-md transition-colors ${ isActive ? "bg-accent text-accent-foreground font-semibold" : "text-foreground hover:bg-accent/50" @@ -11,24 +11,27 @@ export const Navbar = () => { return (