From ff90d0381c6e74403f35dce354a56062f1ab395d Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Thu, 11 Sep 2025 20:08:02 -0700 Subject: [PATCH] Fix padding on toolbar buttons --- Sources/Secretive/Views/Styles/ToolbarButtonStyle.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/Secretive/Views/Styles/ToolbarButtonStyle.swift b/Sources/Secretive/Views/Styles/ToolbarButtonStyle.swift index 7dd1f65..e175970 100644 --- a/Sources/Secretive/Views/Styles/ToolbarButtonStyle.swift +++ b/Sources/Secretive/Views/Styles/ToolbarButtonStyle.swift @@ -39,6 +39,7 @@ struct ToolbarButtonStyle: ButtonStyle { } else { configuration .label + .padding(EdgeInsets(top: 6, leading: 8, bottom: 6, trailing: 8)) .background(colorScheme == .light ? lightColor : darkColor) .foregroundColor(.white) .clipShape(RoundedRectangle(cornerRadius: 5))