allow scrolling in login views, smaller margin of whiteout logo on mobile

This commit is contained in:
Mario Volke 2014-06-17 15:26:26 +02:00
parent d2d4cfa5df
commit 504062abe1
1 changed files with 6 additions and 4 deletions

View File

@ -1,7 +1,6 @@
.view-login {
position: relative;
overflow: hidden;
height: 100%;
min-height: 100%;
background-color: $color-grey-lightest;
color: $color-grey-dark;
text-align: center;
@ -9,15 +8,18 @@
.logo {
max-width: 700px;
margin: 135px auto 75px;
margin: 75px auto;
img {
display: block;
max-width: 100%;
width: 320px;
margin-left: auto;
margin-right: auto;
}
@include respond-to(desktop) {
@include respond-to(desktop) {
margin-top: 135px;
img {
margin-left: 0;
}
}