mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
Updated search result spacing
This commit is contained in:
parent
e7c9013ffd
commit
3b968ff8a5
1 changed files with 4 additions and 4 deletions
|
@ -113,7 +113,7 @@ function TagResults({tags}) {
|
|||
);
|
||||
});
|
||||
return (
|
||||
<div className="border-t border-gray-200 py-6 px-7">
|
||||
<div className="border-t border-gray-200 py-4 px-7">
|
||||
<h1 className="uppercase text-xs text-neutral-400 font-semibold mb-2">Tags</h1>
|
||||
{TagItems}
|
||||
</div>
|
||||
|
@ -143,7 +143,7 @@ function PostResults({posts}) {
|
|||
);
|
||||
});
|
||||
return (
|
||||
<div className="border-t border-neutral-200 py-6 px-7">
|
||||
<div className="border-t border-neutral-200 py-4 px-7">
|
||||
<h1 className="uppercase text-xs text-neutral-400 font-semibold mb-2">Posts</h1>
|
||||
{PostItems}
|
||||
</div>
|
||||
|
@ -152,7 +152,7 @@ function PostResults({posts}) {
|
|||
|
||||
function AuthorListItem({name}) {
|
||||
return (
|
||||
<div className="py-2 -mx-7 px-7 hover:bg-neutral-100 cursor-pointer">
|
||||
<div className="py-3 -mx-7 px-7 hover:bg-neutral-100 cursor-pointer">
|
||||
<div className="rounded-full bg-slate-600"></div>
|
||||
<h2 className="text-[1.65rem] font-medium leading-tight text-neutral-900">{name}</h2>
|
||||
</div>
|
||||
|
@ -169,7 +169,7 @@ function AuthorResults({authors}) {
|
|||
);
|
||||
});
|
||||
return (
|
||||
<div className="border-t border-neutral-200 py-6 px-7">
|
||||
<div className="border-t border-neutral-200 py-4 px-7">
|
||||
<h1 className="uppercase text-xs text-neutral-400 font-semibold mb-2">Authors</h1>
|
||||
{AuthorItems}
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue