mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
Fixed scroll bar bug
This commit is contained in:
parent
b6ecad0488
commit
12791f54e6
@ -321,7 +321,7 @@ function Results({posts, authors, tags}) {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div className='overflow-scroll max-h-[70vh]'>
|
<div className='overflow-y-auto max-h-[70vh]'>
|
||||||
<AuthorResults authors={authors} />
|
<AuthorResults authors={authors} />
|
||||||
<TagResults tags={tags} />
|
<TagResults tags={tags} />
|
||||||
<PostResults posts={posts} />
|
<PostResults posts={posts} />
|
||||||
|
Loading…
Reference in New Issue
Block a user