small fix

This commit is contained in:
2019-06-26 14:37:03 +02:00
parent 4bacc3a0ce
commit 582d8acc18

View File

@@ -10,6 +10,7 @@
--background-color: #141709; --background-color: #141709;
--primary-color: #525c2e; --primary-color: #525c2e;
--primary-hover-color: #708a00; --primary-hover-color: #708a00;
--logo-url: url("./forest.png");
--logo-width: 412px; --logo-width: 412px;
--logo-height: 175px; --logo-height: 175px;
--box-width: 21em; --box-width: 21em;
@@ -49,8 +50,7 @@
} }
.user { .user {
background: url("./forest.png"); background: var(--logo-url) no-repeat;
background-repeat: no-repeat;
padding-top: var(--logo-height); padding-top: var(--logo-height);
width: var(--logo-width); width: var(--logo-width);
flex: 0 1 auto; flex: 0 1 auto;
@@ -89,7 +89,7 @@
} }
:not(.logged) > .ynh-logo{ :not(.logged) > .ynh-logo{
background-image: url("./forest.png"); background-image: var(--logo-url);
width: var(--logo-width); width: var(--logo-width);
height: var(--logo-height); height: var(--logo-height);
opacity: 1; opacity: 1;
@@ -99,7 +99,7 @@
.ynh-wrapper.login { .ynh-wrapper.login {
margin: 0; margin: 0;
width: 100%; /*width: 100%;*/
} }
.login-form .form-group { .login-form .form-group {