Skip to content

Commit 4473f00

Browse files
authored
Merge pull request #443 from loopandlearn/orange-snooze
feat: Enhance snooze button visibility with larger size and orange color
2 parents 048beae + bff799e commit 4473f00

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

LoopFollow/Snoozer/SnoozerView.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,11 @@ struct SnoozerView: View {
142142

143143
Button(action: vm.snoozeTapped) {
144144
Text(vm.snoozeUnits == 0 ? "Acknowledge" : "Snooze")
145-
.font(.title2).bold()
146-
.frame(maxWidth: .infinity, minHeight: 50)
147-
.background(Color.accentColor)
145+
.font(.system(size: 30, weight: .bold))
146+
.frame(maxWidth: .infinity, minHeight: 60)
147+
.background(Color.orange)
148148
.foregroundColor(.white)
149-
.cornerRadius(12)
149+
.clipShape(Capsule())
150150
}
151151
.padding(.horizontal, 24)
152152
.padding(.bottom, 20)

0 commit comments

Comments
 (0)