fix login page vertical scroll and centering

pull/351/head
Matthew Hodgson 2015-11-10 19:19:23 +00:00
parent 9cbd4ae2e4
commit f628591e27
1 changed files with 13 additions and 1 deletions

View File

@ -17,6 +17,18 @@ limitations under the License.
.mx_Login {
width: 100%;
height: 100%;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center;
overflow: auto;
}
.mx_Login h2 {
@ -28,8 +40,8 @@ limitations under the License.
.mx_Login_box {
width: 300px;
min-height: 450px;
margin: auto;
padding-top: 100px;
}
.mx_Login_logo {