Fixed transition error with login arrow button.

This commit is contained in:
Daniel Scalzi
2018-01-23 15:41:01 -05:00
parent e236a38757
commit 45997c17f5
2 changed files with 12 additions and 4 deletions

View File

@@ -237,7 +237,7 @@ p {
cursor: pointer;
position: relative;
right: -20px;
transition: 0.5s ease;2
transition: 0.5s ease;
}
#loginButton:hover {
text-shadow: 0px 0px 20px #fff;
@@ -245,12 +245,15 @@ p {
#loginButton:focus {
outline: none;
}
#loginButton img {
#loginSVG {
overflow: visible;
transform: rotate(90deg);
margin-left: 20px;
transition: 0.25s ease;
width: 20px;
height: 20px;
}
#loginButton:hover img {
#loginButton:hover #loginSVG {
-webkit-filter: drop-shadow(0px 0px 2px #fff);
}