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/components/footer.js | |
| parent | 85968a3a6bc5737715ed34fba942153174d2c993 (diff) | |
bonkers scroll bugs
Diffstat (limited to 'client/src/lib/components/footer.js')
| -rw-r--r-- | client/src/lib/components/footer.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/lib/components/footer.js b/client/src/lib/components/footer.js index ffd157d..f630ed8 100644 --- a/client/src/lib/components/footer.js +++ b/client/src/lib/components/footer.js @@ -56,8 +56,8 @@ const styles = StyleSheet.create({ flexDirection: 'row', justifyContent: 'center', alignItems: 'center', - maxWidth: 140, - maxHeight: 40, + maxWidth: isMobile ? 100 : 140, + maxHeight: isMobile ? 30 : 40, width: 260, height: 39, }, @@ -72,6 +72,6 @@ const styles = StyleSheet.create({ fontSize: 10, flex: 1, padding: 10, - marginTop: 4, + marginTop: isMobile ? 0 : 4, } }) |
