From 705f37192a577e4bd16c867eed74fe91c9e3ba4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Bj=C3=B6rkert?= Date: Mon, 21 Jul 2025 21:28:38 +0200 Subject: [PATCH 1/2] feat: Enhance snooze button visibility with larger size and orange color --- LoopFollow/Snoozer/SnoozerView.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/LoopFollow/Snoozer/SnoozerView.swift b/LoopFollow/Snoozer/SnoozerView.swift index 65ff73654..53c4d12ae 100644 --- a/LoopFollow/Snoozer/SnoozerView.swift +++ b/LoopFollow/Snoozer/SnoozerView.swift @@ -142,11 +142,11 @@ struct SnoozerView: View { Button(action: vm.snoozeTapped) { Text(vm.snoozeUnits == 0 ? "Acknowledge" : "Snooze") - .font(.title2).bold() - .frame(maxWidth: .infinity, minHeight: 50) - .background(Color.accentColor) + .font(.system(size: 30, weight: .bold)) + .frame(maxWidth: .infinity, minHeight: 80) + .background(Color.orange) .foregroundColor(.white) - .cornerRadius(12) + .clipShape(Capsule()) } .padding(.horizontal, 24) .padding(.bottom, 20) From bff799e8ba36b5807142c7fb84436c669b6854f2 Mon Sep 17 00:00:00 2001 From: marionbarker Date: Mon, 21 Jul 2025 17:37:58 -0700 Subject: [PATCH 2/2] adjust minHeight to avoid tab bar, portrait, SE phone --- LoopFollow/Snoozer/SnoozerView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LoopFollow/Snoozer/SnoozerView.swift b/LoopFollow/Snoozer/SnoozerView.swift index 53c4d12ae..b2a0e2a2f 100644 --- a/LoopFollow/Snoozer/SnoozerView.swift +++ b/LoopFollow/Snoozer/SnoozerView.swift @@ -143,7 +143,7 @@ struct SnoozerView: View { Button(action: vm.snoozeTapped) { Text(vm.snoozeUnits == 0 ? "Acknowledge" : "Snooze") .font(.system(size: 30, weight: .bold)) - .frame(maxWidth: .infinity, minHeight: 80) + .frame(maxWidth: .infinity, minHeight: 60) .background(Color.orange) .foregroundColor(.white) .clipShape(Capsule())