This is an automated email from the ASF dual-hosted git repository. dklco pushed a commit to branch SLING-7858 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git
commit 05443d9fd66567cc64e546e8380bbafdd7eebc5e Author: Dan Klco <[email protected]> AuthorDate: Wed Sep 5 10:14:21 2018 -0400 Fixing an issue where the page edit buttons dissappear on mobile --- ui/src/main/frontend/src/scss/editor.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/src/main/frontend/src/scss/editor.scss b/ui/src/main/frontend/src/scss/editor.scss index 90c6eaf..7499b80 100644 --- a/ui/src/main/frontend/src/scss/editor.scss +++ b/ui/src/main/frontend/src/scss/editor.scss @@ -58,6 +58,9 @@ overflow: hidden; z-index: 998; padding-top: 8px; + @media screen and (max-width: $tablet) { + top: 104px; + } } .sling-cms-logo { height: 25px;
