From 3693d5c6a5e75417fa52962d38cd6fbd41bb5d67 Mon Sep 17 00:00:00 2001 From: Gabriel Masclef Date: Tue, 12 Jul 2022 13:14:10 -0300 Subject: [PATCH] Fix: numbers cut off on the offers card --- src/navigation/services/buy-crypto/screens/BuyCryptoOffers.tsx | 1 - src/navigation/services/buy-crypto/styled/BuyCryptoCard.tsx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/navigation/services/buy-crypto/screens/BuyCryptoOffers.tsx b/src/navigation/services/buy-crypto/screens/BuyCryptoOffers.tsx index 9ba85714f..8c28caba4 100644 --- a/src/navigation/services/buy-crypto/screens/BuyCryptoOffers.tsx +++ b/src/navigation/services/buy-crypto/screens/BuyCryptoOffers.tsx @@ -157,7 +157,6 @@ const OfferDataContainer = styled.View` `; const OfferDataCryptoAmount = styled(H5)` - line-height: 20px; color: ${({theme: {dark}}) => (dark ? White : Black)}; `; diff --git a/src/navigation/services/buy-crypto/styled/BuyCryptoCard.tsx b/src/navigation/services/buy-crypto/styled/BuyCryptoCard.tsx index 204601591..b2b22d0cf 100644 --- a/src/navigation/services/buy-crypto/styled/BuyCryptoCard.tsx +++ b/src/navigation/services/buy-crypto/styled/BuyCryptoCard.tsx @@ -18,7 +18,7 @@ export const BuyCryptoExpandibleCard = styled.TouchableOpacity` border: 1px solid ${({theme: {dark}}) => (dark ? LightBlack : '#eaeaea')}; border-radius: 9px; margin: 20px 15px 0px 15px; - padding: 20px 14px; + padding: 18px 14px; `; export const ActionsContainer = styled.View`