fix(app): update options icon button styling - active state and hover

This commit is contained in:
David Hill
2026-01-24 21:15:01 +00:00
parent c56f6127c7
commit b824fc5516

View File

@@ -485,7 +485,11 @@ export function DialogSelectServer() {
<IconButton
icon="dot-grid"
variant="ghost"
class="bg-transparent transition-opacity shrink-0 hover:scale-110 size-8"
class="shrink-0 size-8 hover:bg-surface-base-hover"
classList={{
"bg-transparent": !popoverOpen(),
"bg-surface-base-active": popoverOpen(),
}}
onPointerDown={(event: PointerEvent) => event.stopPropagation()}
/>
}