Browse Source

Fix unnecessary scrolling on login/register panes

JC Brand 7 years ago
parent
commit
2bb6565168
2 changed files with 2 additions and 3 deletions
  1. 1 2
      css/inverse.css
  2. 1 1
      sass/inverse/_controlbox.scss

+ 1 - 2
css/inverse.css

@@ -2462,8 +2462,7 @@ body {
   #conversejs #controlbox .controlbox-panes {
     background-color: white; }
   #conversejs #controlbox .controlbox-pane {
-    height: -webkit-calc(100% - 63px);
-    height: calc(100% - 63px); }
+    height: auto; }
 
 #conversejs #converse-roster {
   text-align: left;

+ 1 - 1
sass/inverse/_controlbox.scss

@@ -97,7 +97,7 @@
             background-color: white;
         }
         .controlbox-pane {
-            @include calc(height, '100% - #{$controlbox-head-height}');
+            height: auto;
         }
     }
 }