From abf61463fe0b6b799711842c47cbb0aa0da53a2e Mon Sep 17 00:00:00 2001 From: Christoph Hagen Date: Fri, 10 Nov 2023 13:46:43 +0100 Subject: [PATCH] Fix button heights --- ResumeBuilder/ContentView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ResumeBuilder/ContentView.swift b/ResumeBuilder/ContentView.swift index ca5002e..8646c40 100644 --- a/ResumeBuilder/ContentView.swift +++ b/ResumeBuilder/ContentView.swift @@ -51,6 +51,7 @@ struct ContentView: View { }) { Label("Export", systemSymbol: .squareAndArrowDown) .padding(3) + .frame(maxHeight: 20) }.confirmationDialog( "Which format would you like?", isPresented: $showExportFormatPicker @@ -65,6 +66,7 @@ struct ContentView: View { Button(action: importData) { Label("Import", systemSymbol: .docBadgePlus) .padding(8) + .frame(maxHeight: 20) } Spacer() Toggle("Dark mode", isOn: $darkModeEnabled)