Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/NavbarSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export default function NavbarSearch({ variant = 'desktop', onNavigate }: Navbar

{/* Desktop Search Panel */}
{variant === 'desktop' && open && (
<div className="absolute right-0 top-full mt-2 z-50 w-[calc(100vw-2rem)] max-w-[520px] sm:w-[450px] md:w-[520px] rounded-2xl border border-black/10 bg-white/95 p-3 shadow-2xl backdrop-blur-xl dark:border-white/10 dark:bg-[#0a0a0a]/95 animate-in fade-in slide-in-from-top-2 duration-200">
<div className="absolute left-0 right-0 top-full mt-5 z-50 w-[calc(100vw-2rem)] max-w-[520px] sm:w-[450px] md:w-[520px] rounded-2xl border border-black/10 bg-white/95 p-3 shadow-2xl backdrop-blur-xl dark:border-white/10 dark:bg-[#0a0a0a]/95 animate-in fade-in slide-in-from-top-2 duration-200">
{/* Search Input inside the dropdown */}
<div className="relative flex items-center rounded-xl border border-black/10 bg-black/5 px-3 dark:border-white/15 dark:bg-white/5">
<Search size={16} className="flex-shrink-0 text-gray-400 dark:text-gray-500" />
Expand Down
Loading