aboutsummaryrefslogtreecommitdiff
path: root/apps/web/src
diff options
context:
space:
mode:
authorYash <[email protected]>2024-03-31 10:52:51 +0000
committerYash <[email protected]>2024-03-31 10:52:51 +0000
commit2ffbe2dc9f6d88af46c0459afb651af01dc4d1c2 (patch)
tree2fa838f368ce1df35f6ffd9dcc07d8331b8c70bb /apps/web/src
parentList Item with Sidebar (diff)
downloadsupermemory-2ffbe2dc9f6d88af46c0459afb651af01dc4d1c2.tar.xz
supermemory-2ffbe2dc9f6d88af46c0459afb651af01dc4d1c2.zip
fix delete button on dark mode
Diffstat (limited to 'apps/web/src')
-rw-r--r--apps/web/src/components/Sidebar.tsx2
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>