From d7c904a677ac7192901c958abea2a23e15c87254 Mon Sep 17 00:00:00 2001 From: dankito Date: Mon, 27 Jul 2020 12:10:41 +0200 Subject: [PATCH] Fixed that due to padding height was too small --- .../BankingiOSApp/ui/views/AccountTransactionListItem.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountTransactionListItem.swift b/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountTransactionListItem.swift index 860b9949..c129eccd 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountTransactionListItem.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/views/AccountTransactionListItem.swift @@ -34,7 +34,7 @@ struct AccountTransactionListItem: View { Text(transaction.usage) .styleAsDetail() .padding(.top, 4) - .frame(height: 42, alignment: .center) + .frame(height: 46, alignment: .center) } Spacer()