Skip to content

Commit

Permalink
Merge pull request #67 from Enterprize1/63-allow-the-e-mail-list-to-b…
Browse files Browse the repository at this point in the history
…e-scrollable

Allow the email list to be scrolled
  • Loading branch information
Enterprize1 authored Jul 18, 2024
2 parents c2028b2 + c44ac4a commit a9afe3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(notloggedin)/[code]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const Emails: FC<{
return (
<div className='flex w-52 flex-shrink-0 flex-col bg-gray-50 shadow'>
<div className='px-3 leading-loose'>{currentFolder.folder.name}</div>
<div className='flex flex-grow flex-col divide-y divide-gray-300'>
<div className='flex flex-grow flex-col divide-y divide-gray-300 overflow-y-auto flex-[1_1_0px]'>
{currentFolder.emails.map((e) => (
<SingleEmail
key={e.emailId}
Expand Down

0 comments on commit a9afe3c

Please sign in to comment.