mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Fixed scroll bar bug
This commit is contained in:
parent
b6ecad0488
commit
12791f54e6
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue