Skip to content

Commit

Permalink
Paywalls: fixed Footer padding (#1354)
Browse files Browse the repository at this point in the history
This padding was duplicated in all templates.

### Before:
![Screenshot 2023-10-16 at 10 28
15](https://github.com/RevenueCat/purchases-android/assets/685609/15bffb0a-a5e2-4e41-8b93-747fa523eaa7)

### After:
![Screenshot 2023-10-16 at 10 28
32](https://github.com/RevenueCat/purchases-android/assets/685609/68b5c54f-b192-4cfb-8cd7-5589c12a227e)
  • Loading branch information
NachoSoto authored and tonidero committed Oct 31, 2023
1 parent bf3af6a commit 7407d3b
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,8 @@ private fun Footer(
modifier = childModifier
.fillMaxWidth()
.height(intrinsicSize = IntrinsicSize.Min)
.padding(
horizontal = UIConstant.defaultHorizontalPadding,
vertical = UIConstant.defaultVerticalSpacing,
),
.padding(horizontal = UIConstant.defaultHorizontalPadding)
.padding(bottom = UIConstant.defaultVerticalSpacing),
horizontalArrangement = Arrangement.Center,
verticalAlignment = Alignment.CenterVertically,
) {
Expand Down

0 comments on commit 7407d3b

Please sign in to comment.