diff --git a/Sources/Secretive/Views/Configuration/IntegrationsView.swift b/Sources/Secretive/Views/Configuration/IntegrationsView.swift index de6b8a0..b738d0e 100644 --- a/Sources/Secretive/Views/Configuration/IntegrationsView.swift +++ b/Sources/Secretive/Views/Configuration/IntegrationsView.swift @@ -32,7 +32,6 @@ struct IntegrationsView: View { .onAppear { selectedInstruction = instructions.gettingStarted } - .frame(minHeight: 500) } } @@ -62,6 +61,7 @@ struct FauxToolbarModifier: ViewModifier { } } + .frame(minWidth: 400, minHeight: 400) } } diff --git a/Sources/Secretive/Views/Configuration/SetupView.swift b/Sources/Secretive/Views/Configuration/SetupView.swift index 2578c28..ed04eb9 100644 --- a/Sources/Secretive/Views/Configuration/SetupView.swift +++ b/Sources/Secretive/Views/Configuration/SetupView.swift @@ -172,10 +172,13 @@ struct StepView: View { .frame(width: 20) VStack(alignment: .leading, spacing: 4) { Text(title) + .fixedSize(horizontal: false, vertical: true) .bold() Text(description) + .fixedSize(horizontal: false, vertical: true) if let detail { Text(detail) + .fixedSize(horizontal: false, vertical: true) .font(.callout) .italic() }