Skip to content

Commit

Permalink
Decrease top and bottom padding for iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
rickycodes committed Feb 20, 2020
1 parent 916e52b commit 4e29a46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/UI/Navbar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ const styles = StyleSheet.create({
hamburgerButton: {
paddingLeft: Device.isAndroid() ? 22 : 18,
paddingRight: Device.isAndroid() ? 22 : 18,
paddingTop: 14,
paddingBottom: 14
paddingTop: Device.isAndroid() ? 14 : 10,
paddingBottom: Device.isAndroid() ? 14 : 10
},
backButton: {
paddingLeft: Device.isAndroid() ? 22 : 18,
Expand Down

0 comments on commit 4e29a46

Please sign in to comment.