Make the login image fully configurable
This commit is contained in:
committed by
David Pordomingo
parent
65a433ebf8
commit
0d2fd353c0
@@ -2,19 +2,19 @@
|
|||||||
// Toshi the dog from https://unsplash.com/@charlesdeluvio - what a funny dog...
|
// Toshi the dog from https://unsplash.com/@charlesdeluvio - what a funny dog...
|
||||||
|
|
||||||
.bg-login-image {
|
.bg-login-image {
|
||||||
background: url('https://source.unsplash.com/K4mSJ7kc0As/600x800');
|
background: url($login-image);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg-register-image {
|
.bg-register-image {
|
||||||
background: url('https://source.unsplash.com/Mv9hjnEUHR4/600x800');
|
background: url($register-image);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg-password-image {
|
.bg-password-image {
|
||||||
background: url('https://source.unsplash.com/oWTW-jNGl9I/600x800');
|
background: url($password-image);
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -74,3 +74,8 @@ $transition-collapse: height .15s ease !default;
|
|||||||
// Dropdowns
|
// Dropdowns
|
||||||
$dropdown-font-size: 0.85rem !default;
|
$dropdown-font-size: 0.85rem !default;
|
||||||
$dropdown-border-color: $border-color !default;
|
$dropdown-border-color: $border-color !default;
|
||||||
|
|
||||||
|
// Images
|
||||||
|
$login-image: 'https://source.unsplash.com/K4mSJ7kc0As/600x800' !default;
|
||||||
|
$register-image: 'https://source.unsplash.com/Mv9hjnEUHR4/600x800' !default;
|
||||||
|
$password-image: 'https://source.unsplash.com/oWTW-jNGl9I/600x800' !default;
|
||||||
|
|||||||
Reference in New Issue
Block a user