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
4 changes: 2 additions & 2 deletions src/components/layouts/AppSidebarClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const SectionRow = memo(function SectionRow({
href={section.href}
onClick={onItemClick}
ref={attachRef && isExactSection ? activeSectionRef : undefined}
className={`group flex items-center justify-between gap-1 py-1.5 w-full cursor-pointer transition-colors ${
className={`group flex items-center bg-gray-900 justify-between gap-1 py-1.5 w-full cursor-pointer transition-colors ${
isExactSection
? "text-teal-400"
: isActiveSection
Expand Down Expand Up @@ -260,7 +260,7 @@ function AppSidebarInner({
return (
<>
{/* ── Mobile nav ─────────────────────────────────────────── */}
<div className={`md:hidden sticky top-[70px] z-40 bg-gray-950/80 backdrop-blur-sm ${pathname === "/" ? "hidden" : ""}`}>
<div className={`md:hidden sticky top-[70px] z-40 bg-gray-900 backdrop-blur-sm ${pathname === "/" ? "hidden" : ""}`}>
<button
className="flex items-center gap-1.5 px-4 py-3 text-gray-400 hover:text-gray-200 transition-colors cursor-pointer"
onClick={() => setMobileOpen((o) => !o)}
Expand Down
Loading