diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-06-04 17:30:25 -0400 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-06-04 17:30:25 -0400 |
| commit | 3064af9ad34c606ac199369bfe86346d00471fac (patch) | |
| tree | b432cac458c9734fb492743800065d2eb3d19f35 /client/src/lib/views/nav.js | |
| parent | 85968a3a6bc5737715ed34fba942153174d2c993 (diff) | |
bonkers scroll bugs
Diffstat (limited to 'client/src/lib/views/nav.js')
| -rw-r--r-- | client/src/lib/views/nav.js | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/client/src/lib/views/nav.js b/client/src/lib/views/nav.js index fe2e4b7..ef04f2d 100644 --- a/client/src/lib/views/nav.js +++ b/client/src/lib/views/nav.js @@ -89,11 +89,11 @@ const styles = StyleSheet.create({ alignItems: 'flex-end', }, flexEnd: { - alignItems: 'flex-end', + alignItems: 'center', paddingRight: isMobile ? 5 : 10, }, flexStart: { - alignItems: 'flex-start', + alignItems: 'center', paddingLeft: isMobile ? 5 : 10, }, unselectedNavItem: { @@ -111,9 +111,7 @@ const styles = StyleSheet.create({ margin: "0 auto", justifyContent: 'center', alignItems: 'flex-end', - width: 35, - height: 35, + width: isIphone ? 30 : 35, + height: isIphone ? 30 : 35, }, }) - - |
