From c14adff062cacff83ee6db9e68c58bf593c9d67a Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Fri, 24 May 2019 22:41:19 +0200 Subject: [PATCH] fixed body padding for small devices --- web/css/static/main.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/css/static/main.scss b/web/css/static/main.scss index cf667637..03910f72 100644 --- a/web/css/static/main.scss +++ b/web/css/static/main.scss @@ -32,6 +32,10 @@ html, body { $small_device: 650px; @media only screen and (max-width: $small_device) { + html, body { + padding: 0!important; + } + .app-container { bottom: 25px; }