Skip to content
Merged
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
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