Skip to content
This repository has been archived by the owner on Nov 5, 2019. It is now read-only.

Commit

Permalink
for issue #137
Browse files Browse the repository at this point in the history
Correcting problem login page :
- set overflow in scroll
- adding margin bottom for scrolling
  • Loading branch information
seblemoine committed Jul 9, 2018
1 parent 8b8e574 commit 33ce6e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
7 changes: 3 additions & 4 deletions web/admin/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -224,14 +224,12 @@ input.form-control {

.container-auth {
position: relative;
height: 800px;
min-height: 500px;
width: 100%;
background: #161415 url(../../common/images/banner.jpg) no-repeat top center;
background-size: cover !important;
-webkit-background-size: cover !important;
text-align: center;
overflow: hidden; }
overflow: scroll; }

.navbar-default .navbar-nav > .main {
background: #F0F0F0;
Expand Down Expand Up @@ -281,7 +279,8 @@ input.form-control {

.block-banner-overflow,
.block-banner-overflow-transparent {
margin-top: 450px;
margin-top: 350px;
margin-bottom: 350px;
padding: 10px 40px; }

.logo-circle {
Expand Down
9 changes: 5 additions & 4 deletions web/admin/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -198,14 +198,14 @@ input.form-control {

.container-auth {
position: relative;
height: 800px;
min-height: 500px;
//height: 600px;
//min-height: 500px;
width: 100%;
background: #161415 url(../../common/images/banner.jpg) no-repeat top center;
background-size: cover !important;
-webkit-background-size: cover !important;
text-align: center;
overflow: hidden;
overflow: scroll;
}

.navbar-default .navbar-nav > .main {
Expand Down Expand Up @@ -270,7 +270,8 @@ input.form-control {

.block-banner-overflow,
.block-banner-overflow-transparent {
margin-top: 450px;
margin-top: 350px;
margin-bottom: 350px;
padding: 10px 40px;
}

Expand Down

0 comments on commit 33ce6e7

Please sign in to comment.