From 9ca9ab63f5724a5bae405f168b00490ed7781c37 Mon Sep 17 00:00:00 2001 From: softsimon Date: Fri, 24 Mar 2023 18:32:33 +0900 Subject: [PATCH] Bottom padding for mobile --- frontend/src/styles.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss index d928223e5..88b7521f2 100644 --- a/frontend/src/styles.scss +++ b/frontend/src/styles.scss @@ -1143,4 +1143,8 @@ app-master-page { display: flex; flex-direction: column; min-height: 100vh; + padding-bottom: 60px; + @media (min-width: 992px) { + padding-bottom: 0px; + } }