diff --git a/mobile/components/CurrencyMenu.tsx b/mobile/components/CurrencyMenu.tsx
index ff07cd187..ef6fc2770 100644
--- a/mobile/components/CurrencyMenu.tsx
+++ b/mobile/components/CurrencyMenu.tsx
@@ -40,7 +40,7 @@ const CurrencyMenu = ({
},
text: {
color: textColor || '#000',
- fontWeight: '500'
+ fontWeight: 'bold'
},
menu: {
position: 'absolute',
@@ -51,16 +51,20 @@ const CurrencyMenu = ({
width: 70,
height: 32,
backgroundColor: '#fff',
- color: '#515151',
- // backgroundColor: '#feeee4',
- // color: '#f37022',
- textAlign: 'center',
- verticalAlign: 'middle',
borderColor: '#f1f1f1',
borderWidth: 1,
+ flex: 1,
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+ menuItemText: {
+ color: '#515151',
+ textAlign: 'center',
},
selected: {
backgroundColor: '#feeee4',
+ },
+ textSelected: {
color: '#f37022',
}
})
@@ -87,7 +91,9 @@ const CurrencyMenu = ({
setShowMenu(false)
}}
>
- {currency.code}
+
+ {currency.code}
+
))
}