Skip to content

Commit

Permalink
Adjust Menu icon for Token, replace adaptive icon
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdee committed Jun 10, 2022
1 parent 7c53ab3 commit 7448d1e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
Binary file modified assets/images/adaptive-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion components/Token/Token.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,10 @@ function Token(props: TokenProps): React.ReactElement {
</Text>
</View>
{ showMenu && handleOpenMenu && (
<Pressable onPress={handleOpenMenu}>
<Pressable
onPress={handleOpenMenu}
style={styles.menuButton}
>
<Ionicons
color={COLORS.text}
name="ellipsis-vertical"
Expand Down
10 changes: 7 additions & 3 deletions components/Token/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,18 @@ export default StyleSheet.create({
marginTop: SPACER_HALF / 2,
},
detailsColumn: {
display: 'flex',
flexDirection: 'column',
justifyContent: 'flex-start',
flex: 1,
},
issuer: {
color: COLORS.accent,
fontSize: SPACER + (SPACER_HALF / 2),
},
menuButton: {
display: 'flex',
flexDirection: 'row',
justifyContent: 'center',
width: SPACER + SPACER_HALF,
},
text: {
color: COLORS.text,
fontSize: SPACER * 3,
Expand Down

0 comments on commit 7448d1e

Please sign in to comment.