Explorar el Código

Remove header padding in popups

Denis K hace 8 años
padre
commit
43afbb37d4
Se han modificado 1 ficheros con 8 adiciones y 2 borrados
  1. 8 2
      jet/static/jet/css/_base.scss

+ 8 - 2
jet/static/jet/css/_base.scss

@@ -24,12 +24,18 @@ body {
   font-family: $font;
   text-size-adjust: 100%;
 
+  @include for-mobile {
+    padding-top: $sidebar-header-height;
+  }
+
   &.non-scrollable {
     overflow: hidden;
   }
 
-  @include for-mobile {
-    padding-top: $sidebar-header-height;
+  &.popup {
+    @include for-mobile {
+      padding-top: 0;
+    }
   }
 }