mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Updated how modal height is calculated
This commit is contained in:
parent
5058e46ec8
commit
62b4add780
1 changed files with 1 additions and 1 deletions
|
@ -350,7 +350,7 @@ function Results({posts, authors, tags}) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div className='overflow-y-auto max-h-[70vh] -mt-[1px]'>
|
<div className='overflow-y-auto max-h-[calc(100vh-212px)] sm:max-h-[70vh] -mt-[1px]'>
|
||||||
<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