Fix unnecessary scrolling on login/register panes

This commit is contained in:
JC Brand 2017-09-17 21:50:29 +02:00
parent a9b74ca9b5
commit 2bb6565168
2 changed files with 2 additions and 3 deletions

View File

@ -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;

View File

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