diff options
| author | Yash <[email protected]> | 2024-03-31 10:52:51 +0000 |
|---|---|---|
| committer | Yash <[email protected]> | 2024-03-31 10:52:51 +0000 |
| commit | 2ffbe2dc9f6d88af46c0459afb651af01dc4d1c2 (patch) | |
| tree | 2fa838f368ce1df35f6ffd9dcc07d8331b8c70bb | |
| parent | List Item with Sidebar (diff) | |
| download | supermemory-2ffbe2dc9f6d88af46c0459afb651af01dc4d1c2.tar.xz supermemory-2ffbe2dc9f6d88af46c0459afb651af01dc4d1c2.zip | |
fix delete button on dark mode
| -rw-r--r-- | apps/web/src/components/Sidebar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/src/components/Sidebar.tsx b/apps/web/src/components/Sidebar.tsx index 1b32b1ee..0644d779 100644 --- a/apps/web/src/components/Sidebar.tsx +++ b/apps/web/src/components/Sidebar.tsx @@ -134,7 +134,7 @@ export const ListItem: React.FC<{ item: StoredContent }> = ({ item }) => { <Edit3 className="mr-2 h-4 w-4 " strokeWidth={1.5} /> Edit </DropdownMenuItem> - <DropdownMenuItem className="focus:bg-red-100 focus:text-red-400"> + <DropdownMenuItem className="focus:bg-red-100 focus:text-red-400 dark:focus:bg-red-100/10"> <Trash2 className="mr-2 h-4 w-4 " strokeWidth={1.5} /> Delete </DropdownMenuItem> |