From dcd1faf2af8741ade5e0c9cf1c3806c22ac141ec Mon Sep 17 00:00:00 2001 From: Andrii Momot Date: Tue, 22 Oct 2024 11:16:03 +0200 Subject: [PATCH] fix padding --- .../PushNotificationNudgingView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FinniversKit/Sources/Components/PushNotificationNudgingView/PushNotificationNudgingView/PushNotificationNudgingView.swift b/FinniversKit/Sources/Components/PushNotificationNudgingView/PushNotificationNudgingView/PushNotificationNudgingView.swift index 969bea00d..012be0851 100644 --- a/FinniversKit/Sources/Components/PushNotificationNudgingView/PushNotificationNudgingView/PushNotificationNudgingView.swift +++ b/FinniversKit/Sources/Components/PushNotificationNudgingView/PushNotificationNudgingView/PushNotificationNudgingView.swift @@ -60,7 +60,7 @@ public struct PushNotificationNudgingView: View { if viewModel.state == .initialPrompt { Image(named: .arrowRight) - .padding(.trailing, Warp.Spacing.spacing100) + .padding(.trailing, Warp.Spacing.spacing200) } if viewModel.state == .turnedOff { @@ -69,7 +69,7 @@ public struct PushNotificationNudgingView: View { }, label: { Image(named: .closeCross) .renderingMode(.original) - .padding(.trailing, Warp.Spacing.spacing100) + .padding(.trailing, Warp.Spacing.spacing200) }) }