Skip to content
Snippets Groups Projects

fix(search): fix incomplete scrolling and visibility (MIN-272)

6 files
+ 12
9
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -7,7 +7,7 @@ interface BioEntitiesPinsListProps {
export const BioEntitiesPinsList = ({ bioEnititesPins }: BioEntitiesPinsListProps): JSX.Element => {
return (
<ul className="h-[calc(100vh-198px)] overflow-auto px-6 py-2">
<ul className="h-[calc(100%-224px)] max-h-[calc(100%-224px)] overflow-auto px-6 py-2">
{bioEnititesPins &&
bioEnititesPins.map(result => (
<BioEntitiesPinsListItem
Loading