Skip to content

Commit

Permalink
Fixing search results height when split view is opened
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Oct 8, 2024
1 parent de7462f commit b7abf64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/repos/RepoHome.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const RepoHome = () => {
onShowItem={onShowItem}
showItem={showItem}
filtersHeight='calc(100vh - 300px)'
resultContainerStyle={{height: 'calc(100vh - 400px)', overflow: 'auto'}}
resultContainerStyle={{height: showItem ? 'calc(100vh - 440px)' : 'calc(100vh - 400px)', overflow: 'auto'}}
/>
}
</React.Fragment>
Expand Down

0 comments on commit b7abf64

Please sign in to comment.