commit 2a9219a97b078a0e17cf66c561e5bb3f9b3543a3
parent 7928f275011295bca22e155e25590ccdc86e7bbc
Author: MTRNord <mtrnord1@gmail.com>
Date: Sat, 31 Mar 2018 19:17:30 +0200
Fix class names
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/app/login/login.component.scss b/src/app/login/login.component.scss
@@ -15,14 +15,14 @@ body {
}
/* Pre-render the bigger shadow, but hide it */
-.make-it-fast::after {
+.login-box::after {
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
opacity: 0;
transition: opacity 0.3s ease-in-out;
}
/* Transition to showing the bigger shadow on hover */
-.make-it-fast:hover::after {
+.login-box:hover::after {
opacity: 1;
}