Skip to content

Commit

Permalink
fix(website): make mobile menu scrollable (#1120)
Browse files Browse the repository at this point in the history
Resolves #1119
  • Loading branch information
corneliusroemer authored Feb 26, 2024
1 parent afd83e3 commit a7a6228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/components/Navigation/SandwichMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const SandwichMenu: FC<SandwichMenuProps> = ({ top, right, organism, know
isOpen ? 'translate-x-0' : 'translate-x-full'
}`}
>
<div className='font-bold m-5 flex flex-col justify-between min-h-screen flex-grow'>
<div className='font-bold p-5 flex flex-col justify-between min-h-screen max-h-screen overflow-y-auto'>
<div>
<div className='h-10'>
<a href='/'>Loculus</a>
Expand Down

0 comments on commit a7a6228

Please sign in to comment.