summaryrefslogtreecommitdiff
path: root/client/src/lib/components/header.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/lib/components/header.js')
-rw-r--r--client/src/lib/components/header.js7
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,
},
+
})