This commit is contained in:
Daniel Arantes Loverde
2026-03-05 14:29:20 -03:00
parent 30f0327a53
commit 728cc94525
2 changed files with 33 additions and 8 deletions

View File

@@ -19,7 +19,7 @@ struct OrderDetailsView: View {
}
.padding(.horizontal, 20)
.padding(.top, 14)
.padding(.bottom, UIDevice.bottomNotch + 110)
.padding(.bottom, UIDevice.bottomNotch)
}
.background(AppColors.backgroundLight)
.navigationTitle("Detalhes do Pedido")
@@ -29,7 +29,7 @@ struct OrderDetailsView: View {
reorderButton
.padding(.horizontal, 20)
.padding(.top, 10)
.padding(.bottom, max(10, UIDevice.bottomNotch))
.padding(.bottom, UIDevice.bottomNotch + 60)
}
.background(AppColors.backgroundLight.opacity(0.94))
}