Skip to content

Commit

Permalink
Update sidebar styling.
Browse files Browse the repository at this point in the history
  • Loading branch information
necrodome committed Feb 12, 2025
1 parent 21b3578 commit e545626
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ export function Sidebar({ sideBarComponent, title, newUrl }: { sideBarComponent:
const { isSidebarOpen, setIsSidebarOpen } = useContext(AppContext).sideBar;
return (
<div
className={`fixed md:static inset-0 z-40 w-[280px] transform transition-transform duration-300 ease-in-out ${
className={`fixed md:static inset-0 bg-fp-bg-00 z-40 w-[280px] transform transition-transform duration-300 ease-in-out ${
isSidebarOpen ? "translate-x-0" : "-translate-x-full"
} md:translate-x-0 flex flex-col border-r bg-[--muted] overflow-hidden`}
} md:translate-x-0 flex flex-col border-r border-fp-dec-00 overflow-hidden`}
>
<div className="flex h-[60px] items-center px-5 flex-shrink-0 justify-between">
<div className="flex items-center gap-2 font-semibold">
Expand Down

0 comments on commit e545626

Please sign in to comment.