From 5ceeb93d91c27ae681df2af13f09c1deba180ccf Mon Sep 17 00:00:00 2001 From: alexandrev-tibco Date: Wed, 11 Feb 2026 23:42:40 +0100 Subject: [PATCH] Make Start button bigger and position at the bottom of check-in card Fixes #15 Co-Authored-By: Claude Opus 4.6 --- .../Views/Dashboard/DashboardView.swift | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/PortfolioJournal/Views/Dashboard/DashboardView.swift b/PortfolioJournal/Views/Dashboard/DashboardView.swift index 7178342..8458253 100644 --- a/PortfolioJournal/Views/Dashboard/DashboardView.swift +++ b/PortfolioJournal/Views/Dashboard/DashboardView.swift @@ -483,11 +483,6 @@ struct MonthlyCheckInCard: View { } .font(.subheadline.weight(.semibold)) } - - Button("Start") { - showingStartOptions = true - } - .font(.subheadline.weight(.semibold)) } ProgressView(value: checkInProgress) @@ -499,6 +494,18 @@ struct MonthlyCheckInCard: View { .foregroundColor(isOverdue ? .red : .secondary) } + Button { + showingStartOptions = true + } label: { + Text("Start") + .font(.headline.weight(.semibold)) + .frame(maxWidth: .infinity) + .padding(.vertical, 12) + .background(Color.appPrimary) + .foregroundColor(.white) + .cornerRadius(AppConstants.UI.cornerRadius) + } + NavigationLink( isActive: $startDestinationActive ) {