style(ui): use sidebar accent colors for proxy update button

- replace hardcoded amber-600 with sidebar-accent theme variable

- improve consistency with sidebar theme
This commit is contained in:
kaitranntt
2025-12-19 01:41:04 -05:00
parent 196422cee1
commit eeb6913d96
+2 -1
View File
@@ -123,7 +123,8 @@ export function ProxyStatusWidget() {
size="sm"
className={cn(
'h-7 text-xs gap-1 flex-1',
hasUpdate && 'bg-amber-600 hover:bg-amber-700 text-white'
hasUpdate &&
'bg-sidebar-accent hover:bg-sidebar-accent/90 text-sidebar-accent-foreground'
)}
onClick={handleRestart}
disabled={isActioning}