From 8fe4e0e933ec105f360d076725df9d3991ce097c Mon Sep 17 00:00:00 2001 From: Evan Kaloudis Date: Sat, 31 Dec 2022 14:46:28 -0500 Subject: [PATCH] components/LayerBalance: give action buttons theme styling --- components/LayerBalances/LightningSwipeableRow.tsx | 10 ++++++++-- components/LayerBalances/OnchainSwipeableRow.tsx | 10 ++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/components/LayerBalances/LightningSwipeableRow.tsx b/components/LayerBalances/LightningSwipeableRow.tsx index 2349b0e873..5a25ae7983 100644 --- a/components/LayerBalances/LightningSwipeableRow.tsx +++ b/components/LayerBalances/LightningSwipeableRow.tsx @@ -85,7 +85,14 @@ export default class LightningSwipeableRow extends Component< height={30} /> )} - {text} + + {text} + ); @@ -163,7 +170,6 @@ export default class LightningSwipeableRow extends Component< const styles = StyleSheet.create({ actionText: { - color: 'gray', fontSize: 12, backgroundColor: 'transparent', padding: 10, diff --git a/components/LayerBalances/OnchainSwipeableRow.tsx b/components/LayerBalances/OnchainSwipeableRow.tsx index bf62499b2f..94d5a3e82c 100644 --- a/components/LayerBalances/OnchainSwipeableRow.tsx +++ b/components/LayerBalances/OnchainSwipeableRow.tsx @@ -83,7 +83,14 @@ export default class OnchainSwipeableRow extends Component< height={30} /> )} - {text} + + {text} + ); @@ -159,7 +166,6 @@ export default class OnchainSwipeableRow extends Component< const styles = StyleSheet.create({ actionText: { - color: 'gray', fontSize: 12, backgroundColor: 'transparent', padding: 10,