From f8b020940af2c389aaa19ff6f8b4e59486d9b43e Mon Sep 17 00:00:00 2001 From: Sam Date: Sun, 8 Aug 2021 11:50:34 +0200 Subject: [PATCH] Client - fix footer display on mobile when keyboard pops --- fittrackee_client/src/components/Footer.vue | 2 +- fittrackee_client/src/views/Login.vue | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/fittrackee_client/src/components/Footer.vue b/fittrackee_client/src/components/Footer.vue index 6335abef..d0dc19d4 100644 --- a/fittrackee_client/src/components/Footer.vue +++ b/fittrackee_client/src/components/Footer.vue @@ -41,7 +41,7 @@ display: flex; bottom: 0; - position: absolute; + position: fixed; width: 100%; background: var(--footer-background-color); diff --git a/fittrackee_client/src/views/Login.vue b/fittrackee_client/src/views/Login.vue index a6ad4135..56b795ba 100644 --- a/fittrackee_client/src/views/Login.vue +++ b/fittrackee_client/src/views/Login.vue @@ -36,6 +36,8 @@ flex-wrap: wrap; justify-content: space-evenly; + margin-bottom: $default-margin * 2; + .container-sub { min-width: 50%; }