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/header.js | |
| parent | 85968a3a6bc5737715ed34fba942153174d2c993 (diff) | |
bonkers scroll bugs
Diffstat (limited to 'client/src/lib/components/header.js')
| -rw-r--r-- | client/src/lib/components/header.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/client/src/lib/components/header.js b/client/src/lib/components/header.js index dc95d6d..3d41c4f 100644 --- a/client/src/lib/components/header.js +++ b/client/src/lib/components/header.js @@ -34,9 +34,9 @@ const styles = StyleSheet.create({ header: { width: '100%', backgroundColor: 'black', - paddingTop: isMobile ? 5 : 10, + paddingTop: isMobile ? 20 : 10, paddingBottom: isMobile ? 5 : 10, - height: isMobile ? 30 : 100, + height: isMobile ? 40 : 100, flexDirection: 'row', justifyContent: 'space-around', alignItems: 'center', @@ -45,7 +45,8 @@ const styles = StyleSheet.create({ logo: { flex: 2, marginTop: 0, - height: isMobile ? 30 : 55, + height: isMobile ? 32 : 55, marginBottom: isMobile ? 5 : 10, }, + }) |
