Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export function Home() {

{/* Search and Sort */}
{hasLists && (
<div className="flex gap-2.5 mb-6 animate-slide-up">
<div className="relative z-20 flex gap-2.5 mb-6 animate-slide-up">
<SearchInput
value={searchQuery}
onChange={setSearchQuery}
Expand Down
4 changes: 2 additions & 2 deletions src/pages/ListView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1113,9 +1113,9 @@ export function ListView() {
</div>
)}

{/* Add Item Input - at bottom of list */}
{/* Add Item Input - sticky at bottom of viewport */}
{canUserEdit && viewMode === "list" && (
<div className="mt-4 mb-2 animate-slide-up">
<div className="sticky bottom-0 z-10 pt-2 pb-3 mt-4 bg-gradient-to-t from-white via-white dark:from-gray-900 dark:via-gray-900 to-transparent animate-slide-up">
<AddItemInput ref={addItemInputRef} assetDid={list.assetDid} onAddItem={addItem} />
</div>
)}
Expand Down