From 7bbbe106dcc98e82f514ea14faee8a81f4fd4131 Mon Sep 17 00:00:00 2001 From: Eduarda Barbosa Date: Wed, 26 Feb 2025 15:51:04 -0300 Subject: [PATCH] add missing padding --- .../podcasts/view/folders/SuggestedFoldersPaywall.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/features/podcasts/src/main/java/au/com/shiftyjelly/pocketcasts/podcasts/view/folders/SuggestedFoldersPaywall.kt b/modules/features/podcasts/src/main/java/au/com/shiftyjelly/pocketcasts/podcasts/view/folders/SuggestedFoldersPaywall.kt index c9051ddaf5e..c0ade4a71b5 100644 --- a/modules/features/podcasts/src/main/java/au/com/shiftyjelly/pocketcasts/podcasts/view/folders/SuggestedFoldersPaywall.kt +++ b/modules/features/podcasts/src/main/java/au/com/shiftyjelly/pocketcasts/podcasts/view/folders/SuggestedFoldersPaywall.kt @@ -62,9 +62,9 @@ fun SuggestedFoldersPaywall( Column( modifier = modifier - .windowInsetsPadding(WindowInsets.safeDrawing.only(WindowInsetsSides.Horizontal)) + .windowInsetsPadding(WindowInsets.safeDrawing.only(WindowInsetsSides.Horizontal + WindowInsetsSides.Bottom)) .wrapContentSize() - .padding(top = 8.dp, bottom = 16.dp), + .padding(vertical = 8.dp), horizontalAlignment = Alignment.CenterHorizontally, ) { val isPortrait = LocalConfiguration.current.orientation == Configuration.ORIENTATION_PORTRAIT