Skip to content

Commit e9479e1

Browse files
authored
Merge pull request #312 from gitcoinco/feat/navigation
navigation: update sidebar items bg color
2 parents 625c1ab + aa096f4 commit e9479e1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/layouts/AppSidebarClient.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const SectionRow = memo(function SectionRow({
9393
href={section.href}
9494
onClick={onItemClick}
9595
ref={attachRef && isExactSection ? activeSectionRef : undefined}
96-
className={`group flex items-center justify-between gap-1 py-1.5 w-full cursor-pointer transition-colors ${
96+
className={`group flex items-center bg-gray-900 justify-between gap-1 py-1.5 w-full cursor-pointer transition-colors ${
9797
isExactSection
9898
? "text-teal-400"
9999
: isActiveSection
@@ -260,7 +260,7 @@ function AppSidebarInner({
260260
return (
261261
<>
262262
{/* ── Mobile nav ─────────────────────────────────────────── */}
263-
<div className={`md:hidden sticky top-[70px] z-40 bg-gray-950/80 backdrop-blur-sm ${pathname === "/" ? "hidden" : ""}`}>
263+
<div className={`md:hidden sticky top-[70px] z-40 bg-gray-900 backdrop-blur-sm ${pathname === "/" ? "hidden" : ""}`}>
264264
<button
265265
className="flex items-center gap-1.5 px-4 py-3 text-gray-400 hover:text-gray-200 transition-colors cursor-pointer"
266266
onClick={() => setMobileOpen((o) => !o)}

0 commit comments

Comments
 (0)