You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2020/07/15 16:25:13 UTC

[sling-org-apache-sling-app-cms] 03/03: Minor - cleaning up frame sizing

This is an automated email from the ASF dual-hosted git repository.

dklco pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git

commit c8b3135aa714070b87fb2f4898f403b62c413443
Author: Dan Klco <dk...@apache.org>
AuthorDate: Wed Jul 15 11:19:13 2020 -0400

    Minor - cleaning up frame sizing
---
 ui/src/main/frontend/scss/editor.scss | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/ui/src/main/frontend/scss/editor.scss b/ui/src/main/frontend/scss/editor.scss
index cd7bac0..a000b9e 100644
--- a/ui/src/main/frontend/scss/editor.scss
+++ b/ui/src/main/frontend/scss/editor.scss
@@ -85,7 +85,7 @@
 
   .page-wrapper-frame {
     position: fixed;
-    top: 44px;
+    top: 48px;
     left: 0;
     bottom: 0;
     right: 0;
@@ -97,8 +97,10 @@
     overflow: hidden;
     z-index: 998;
     padding-top: 8px;
+    height: calc(100vh - 48px);
     @media screen and (max-width: $tablet) {
-      top: 104px;
+      top: 112px;
+      height: calc(100vh - 112px);
     }
   }