make visible registration button in 1366x768 screens (#19582)

This commit is contained in:
Serghei Mihai 2017-10-24 13:45:11 +02:00
parent d5cff0b625
commit f17c67879b
2 changed files with 8 additions and 1 deletions

View File

@ -220,6 +220,9 @@ div#main-content {
}
div#login-page h2, div#registration h2, div#login-footer h2 {
@include header(100%);
@media screen and (max-width: $common-screen-width) {
padding-top: 0rem;
}
a {
font-size: 1em;
}
@ -344,7 +347,10 @@ div#main-content {
}
div#methods {
width: 60em;
margin: 3ex auto;
margin: 2ex auto;
@media screen and (max-width: $common-screen-width) {
margin: 1ex auto;
}
padding: 0 1em;
display: flex;
display: -ms-flexbox;

View File

@ -1,5 +1,6 @@
$width: 100%;
$mobile-limit: 960px;
$common-screen-width: 1366px;
$body-background: #f2f2f2;
$top-logo-width: -70px;
$font-size: 13px;