From fa9a92f214368e0b135098327ca476940b381853 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 8 Dec 2025 22:45:31 +0100 Subject: [PATCH] macos: deepen shadow on close pill --- apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift b/apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift index e4dbb08de..9e56f2a0a 100644 --- a/apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift +++ b/apps/macos/Sources/Clawdis/VoiceWakeOverlay.swift @@ -600,7 +600,8 @@ private struct CloseButtonOverlay: View { .frame(width: 22, height: 22) .background(Color.black.opacity(0.4)) .clipShape(Circle()) - .shadow(color: Color.black.opacity(0.35), radius: 6, y: 2) + .shadow(color: Color.black.opacity(0.45), radius: 10, x: 0, y: 3) + .shadow(color: Color.black.opacity(0.2), radius: 2, x: 0, y: 0) } .buttonStyle(.plain) .focusable(false)