From 66bc338286b450401a85365f2e7a45ec00ad2005 Mon Sep 17 00:00:00 2001 From: Florian Strohmaier Date: Tue, 26 Jul 2022 16:45:11 +0200 Subject: [PATCH] responsive.less: Prevent body from scrolling on mobile devices --- public/css/icinga/responsive.less | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/public/css/icinga/responsive.less b/public/css/icinga/responsive.less index a5d2b662c..b66e78e81 100644 --- a/public/css/icinga/responsive.less +++ b/public/css/icinga/responsive.less @@ -37,6 +37,14 @@ html { font-family: 'minimal-layout'; } + + body { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + } } #layout.compact-layout {