From afabaa5fdb23e37b395d5b2e95331b89cdaa7e5f Mon Sep 17 00:00:00 2001 From: azivner Date: Thu, 17 Jan 2019 21:13:53 +0100 Subject: [PATCH] workaround for hidden last line on mobile --- src/public/stylesheets/mobile.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/public/stylesheets/mobile.css b/src/public/stylesheets/mobile.css index 6465b2fcb..523258c6c 100644 --- a/src/public/stylesheets/mobile.css +++ b/src/public/stylesheets/mobile.css @@ -44,7 +44,8 @@ html, body { position: relative; overflow: auto; flex-direction: column; - height: 100%; + /* for some reason detail overflows a little bit so we subtract few pixels */ + height: calc(100% - 25px); /* large left padding is necessary for ckeditor gutter in detail-only (smartphone) layout */ padding-left: 35px; }