Skip to content

Commit ac7fa6b

Browse files
authored
fix: margin condition in EntryListHeader (#1103)
1 parent b94e051 commit ac7fa6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/renderer/src/modules/entry-column/layouts/EntryListHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const EntryListHeader: FC<{
7575
ref={containerRef}
7676
className={cn(
7777
"flex w-full flex-col pl-6 pr-4 pt-2.5 transition-[padding] duration-300 ease-in-out",
78-
view !== FeedViewType.Articles && view !== FeedViewType.Pictures && "mb-2",
78+
view !== FeedViewType.Pictures && "mb-2",
7979
)}
8080
>
8181
<div className={cn("flex w-full", titleAtBottom ? "justify-end" : "justify-between")}>

0 commit comments

Comments
 (0)