fix: margin between the top bar and the content (#1054)
This commit is contained in:
parent
195b6e1e17
commit
e6491e512b
|
|
@ -73,9 +73,12 @@ export const EntryListHeader: FC<{
|
|||
return (
|
||||
<div
|
||||
ref={containerRef}
|
||||
className="flex w-full flex-col pl-6 pr-4 pt-2.5 transition-[padding] duration-300 ease-in-out"
|
||||
className={cn(
|
||||
"flex w-full flex-col pl-6 pr-4 pt-2.5 transition-[padding] duration-300 ease-in-out",
|
||||
view !== FeedViewType.Articles && view !== FeedViewType.Pictures && "mb-2",
|
||||
)}
|
||||
>
|
||||
<div className={cn("flex h-10 w-full", titleAtBottom ? "justify-end" : "justify-between")}>
|
||||
<div className={cn("flex w-full", titleAtBottom ? "justify-end" : "justify-between")}>
|
||||
{!titleAtBottom && titleInfo}
|
||||
|
||||
<div
|
||||
|
|
|
|||
Loading…
Reference in New Issue