Skip to content
Open
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
5 changes: 3 additions & 2 deletions src/components/sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,12 @@ export const Sidebar: React.FC<SidebarProps> = ({
{/* Sidebar */}
<div
className={`
fixed top-0 left-0 h-full w-80 bg-white dark:bg-neutral-900
border-r border-neutral-200 dark:border-neutral-700
fixed top-0 left-0 h-full w-80 bg-white dark:bg-neutral-900
border-r border-neutral-200 dark:border-neutral-700
transform transition-transform duration-300 ease-in-out z-50
${isOpen ? "translate-x-0" : "-translate-x-full"}
md:relative md:translate-x-0 md:z-auto
flex flex-col
`}
>
{/* Header */}
Expand Down