Skip to content

Commit

Permalink
feat(ui): change link to primary color
Browse files Browse the repository at this point in the history
Update the styling to match latest design
  • Loading branch information
kyleleow committed Jul 29, 2021
1 parent 834dc3c commit 7d8e0f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/screens/AppNavigator/screens/Balances/ConvertScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,15 +197,15 @@ function ToggleModeButton (props: { onPress: () => void }): JSX.Element {
function TokenVsUtxosInfo (props: { navigation: NavigationProp<BalanceParamList>}): JSX.Element {
return (
<TouchableOpacity
style={tailwind('flex-row p-4 my-3 items-center justify-center')}
style={tailwind('flex-row px-4 py-2 mb-14 items-center justify-start')}
onPress={() => {
props.navigation.navigate('TokensVsUtxo')
}}
testID='token_vs_utxo_info'
>
<MaterialIcons name='info' size={24} color='gray' />
<MaterialIcons name='help' size={16} style={tailwind('text-primary')} />
<Text
style={tailwind('ml-2')}
style={tailwind('ml-1 text-primary')}
>{translate('screens/ConvertScreen', "Tokens vs UTXO, what's the difference?")}
</Text>
</TouchableOpacity>
Expand Down

0 comments on commit 7d8e0f7

Please sign in to comment.