diff --git a/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift b/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift index d7735eaea..0758baf4f 100644 --- a/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift +++ b/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift @@ -147,11 +147,12 @@ public struct WebPreferencesPopoverView: View { ToolbarItem(placement: .navigationBarTrailing) { Button( action: dismissAction, - label: { Text("Done").foregroundColor(.appGrayTextContrast) } + label: { Text("Done").foregroundColor(.appGrayTextContrast).padding() } ) } } } + .navigationViewStyle(.stack) .accentColor(.appGrayTextContrast) } }