Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Revert "Update twitter icon on mobile (#3880)" #3925

Merged
merged 1 commit into from
Aug 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions packages/mobile/src/assets/images/iconTwitterBird.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export const TwitterButton = (props: TwitterButtonProps) => {
onPress={handlePress}
IconProps={{
...(size === 'large'
? { height: spacing(5), width: spacing(5) }
? { height: spacing(6), width: spacing(6) }
: null),
...IconProps
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ const useStyles = makeStyles(({ spacing }) => ({
marginTop: spacing(4),
alignSelf: 'flex-start'
},
button: {
paddingHorizontal: spacing(6)
},
icon: {
height: spacing(4),
weight: spacing(4)
height: 14,
weight: 14
}
}))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ const useStyles = makeStyles(({ palette, spacing, typography }) => ({
height: 64,
minWidth: 300
},
twitterButton: {
backgroundColor: palette.staticTwitterBlue
},
button: {
paddingHorizontal: spacing(4)
},
Expand Down