diff --git a/src/components/shared/navigation/SideBar.tsx b/src/components/shared/navigation/SideBar.tsx index 625cc6c..b4bf311 100644 --- a/src/components/shared/navigation/SideBar.tsx +++ b/src/components/shared/navigation/SideBar.tsx @@ -89,21 +89,21 @@ const SideBar = () => { {/* mobile bottom bar */}
-
- {NavItems.slice(0, expand ? NavItems.length : 2).map((link) => { +
+ {NavItems.slice(0, expand ? NavItems.length : 3).map((link) => { const isActive = (pathname.includes(link.route) && link.route.length > 1) || pathname === link.route; const shouldRender = !(link.name === "History" || link.name === "Bookmark") || token; if (!shouldRender) return null; return ( - setExpand(false)} key={link.name} className={`flex flex-col items-center gap-3 text-sm ${isActive && ` border-white/50 border-2 backdrop-blur-md `} w-24 p-2 rounded-lg duration-200 transition-all`}> - -

{link.name}

+ setExpand(false)} key={link.name} className={`flex flex-col items-center gap-3 text-sm ${isActive && ` border-white/25 border-2`} w-24 p-2 rounded-lg duration-200 transition-all`}> + +

{link.name}

); })}
setExpand(!expand)}> - -

{expand ? "Show Less" : "Show More"}

+ +

{expand ? "Show Less" : "Show More"}