Skip to content

Commit

Permalink
Fix: Add scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Aug 30, 2024
1 parent e1e6857 commit f10abbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/components/SideMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const SideMenu: React.FC<{ close: () => void }> = ({ close }) => {
onClick={close}
>
<div
className="absolute right-2 top-2 min-w-64 h-[calc(100svh_-_16px)] bg-white dark:bg-slate-900 shadow-lg rounded-lg p-4 flex flex-col"
className="absolute right-2 top-2 min-w-64 h-[calc(100svh_-_16px)] bg-white dark:bg-slate-900 shadow-lg rounded-lg p-4 flex flex-col overflow-y-auto"
onClick={(e) => e.stopPropagation()}
>
{session?.loggedIn ? (
Expand Down

0 comments on commit f10abbf

Please sign in to comment.