diff options
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, } }) |
