From 3f8ad8eea2bac51e723aa0a6f47e8d5a891187dd Mon Sep 17 00:00:00 2001 From: krusty-agent Date: Tue, 10 Feb 2026 22:11:33 -0800 Subject: [PATCH] feat: make add item input always visible (sticky bottom) --- src/pages/ListView.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/ListView.tsx b/src/pages/ListView.tsx index 01eaf58..b3b2caa 100644 --- a/src/pages/ListView.tsx +++ b/src/pages/ListView.tsx @@ -1113,9 +1113,9 @@ export function ListView() { )} - {/* Add Item Input - at bottom of list */} + {/* Add Item Input - sticky at bottom of viewport */} {canUserEdit && viewMode === "list" && ( -
+
)}