From 768b4c764d96ac6437a466d9bc4c15bd25c5287c Mon Sep 17 00:00:00 2001 From: lucaronin Date: Sun, 5 Apr 2026 14:09:29 +0200 Subject: [PATCH] fix: add bottom padding to Favorites list matching top padding Added paddingBottom: 4 to the expanded Favorites list container, consistent with the ViewsSection pattern. This creates symmetric spacing above the first and below the last favorite item. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/Sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index 2ecfee11..fa5466ae 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -392,7 +392,7 @@ function FavoritesSection({ entries, selection, onSelect, onSelectNote, onReorde {!collapsed && ( -
+
{favorites.map((entry) => { const isActive = isSelectionActive(selection, { kind: 'entity', entry }) return (