Skip to content

Commit

Permalink
Actually use the calculated sidebar width
Browse files Browse the repository at this point in the history
  • Loading branch information
mybearworld committed Jun 21, 2024
1 parent 63ff8ba commit c249193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const App = () => {
defaultValue="ulist"
className={`${
showSideNav ? "" : "hidden"
} absolute right-0 top-0 z-[--z-sidebar] h-screen max-h-screen w-[--nav-bar-size] overflow-auto bg-white py-2 dark:bg-gray-950 lg:sticky lg:top-0 lg:block lg:w-auto lg:min-w-[35%]`}
} absolute right-0 top-0 z-[--z-sidebar] h-screen max-h-screen w-[--nav-bar-size] min-w-[--nav-bar-size] overflow-auto bg-white py-2 dark:bg-gray-950 lg:sticky lg:top-0 lg:block`}
>
<Tabs.List className="mb-2 flex h-8 items-center justify-between px-2">
<div className="flex items-center gap-2">
Expand Down

0 comments on commit c249193

Please sign in to comment.