Skip to content

Commit

Permalink
fix: margin condition in EntryListHeader (#1103)
Browse files Browse the repository at this point in the history
  • Loading branch information
kovsu authored Oct 24, 2024
1 parent b94e051 commit ac7fa6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const EntryListHeader: FC<{
ref={containerRef}
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",
view !== FeedViewType.Pictures && "mb-2",
)}
>
<div className={cn("flex w-full", titleAtBottom ? "justify-end" : "justify-between")}>
Expand Down

0 comments on commit ac7fa6b

Please sign in to comment.