Skip to content
This repository was archived by the owner on Aug 27, 2025. It is now read-only.

Commit 644860f

Browse files
committed
fix: crosssync icon color issue in darkmode
1 parent a474261 commit 644860f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/SyncStatus.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class="flex w-6 h-6"
88
:class="{
99
'fill-[#5088ff]': note,
10-
grayscale: !note,
10+
'fill-[#888888]': !note,
1111
'opacity-50 mr-4': true,
1212
}"
1313
cssc="sync-status"

src/components/SyncToggle.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
:class="{
1212
'fill-[#5088ff]': isSyncing === true,
1313
'fill-[#E6A23C]': typeof isSyncing === 'string', // or isSyncing !== !!isSyncing
14-
grayscale: isSyncing === false,
14+
'fill-[#888888]': isSyncing === false,
1515
'opacity-50': !available,
1616
'mx-2': available,
1717
}"

0 commit comments

Comments
 (0)