diff --git a/LeCountdown/Views/StartView.swift b/LeCountdown/Views/StartView.swift index bca4b17..b612edd 100644 --- a/LeCountdown/Views/StartView.swift +++ b/LeCountdown/Views/StartView.swift @@ -42,7 +42,7 @@ struct StartView: View { .frame(maxWidth: .infinity, maxHeight: .infinity) .foregroundColor(.white) .background(Color.accentColor) - .cornerRadius(8.0) + .cornerRadius(12.0) }.sheet(isPresented: self.$showTimerScreen) { NewCountdownView(isPresented: $showTimerScreen) .environment(\.managedObjectContext, viewContext) @@ -60,7 +60,7 @@ struct StartView: View { .frame(maxWidth: .infinity, maxHeight: .infinity) .foregroundColor(.white) .background(Color.accentColor) - .cornerRadius(8.0) + .cornerRadius(12.0) }.sheet(isPresented: self.$showStopwatchScreen) { NewStopwatchView(isPresented: $showStopwatchScreen) .environment(\.managedObjectContext, viewContext)