Skip to content

Commit

Permalink
fix(website): Fix scroll issue on browse page split view (#3669)
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Feb 11, 2025
1 parent 26a9196 commit 25ab444
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion website/src/components/SearchPage/SearchFullUI.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,10 @@ export const InnerSearchFullUI = ({
showMutationSearch={schema.submissionDataTypes.consensusSequences}
/>
</div>
<div className='md:w-[calc(100%-18.1rem)]'>
<div
className={`md:w-[calc(100%-18.1rem)]`}
style={{ paddingBottom: previewedSeqId !== null && previewHalfScreen ? '50vh' : '0' }}
>
<RecentSequencesBanner organism={organism} />

{(detailsHook.isError || aggregatedHook.isError) &&
Expand Down

0 comments on commit 25ab444

Please sign in to comment.