From 50d8310ae7f415047e75aebc5930d4800393da0b Mon Sep 17 00:00:00 2001 From: Satindar Dhillon Date: Wed, 16 Feb 2022 21:01:55 -0800 Subject: [PATCH] add padding around font adjustment buttons to increase tap target --- .../Sources/Views/FontSizeAdjustmentPopoverView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift b/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift index 7147ab60d..deff8c4f8 100644 --- a/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift +++ b/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift @@ -23,6 +23,7 @@ public struct FontSizeAdjustmentPopoverView: View { Image(systemName: "minus") #if os(iOS) .foregroundColor(.appGraySolid) + .padding() #endif } ) @@ -37,6 +38,7 @@ public struct FontSizeAdjustmentPopoverView: View { Image(systemName: "plus") #if os(iOS) .foregroundColor(.appGraySolid) + .padding() #endif } )