Skip to content

Commit

Permalink
(frontend) Add fade in/out effect to header menus
Browse files Browse the repository at this point in the history
  • Loading branch information
siovene committed Jan 7, 2019
1 parent 172f7fa commit 77fc18f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions frontend/src/app/library/components/header/header.component.scss
Expand Up @@ -85,3 +85,15 @@
border: none;
}
}

.show > .dropdown-menu {
opacity: 1;
z-index: 1000;
}

.dropdown-menu {
display: block;
opacity: 0;
z-index: -1000;
transition: opacity .1s ease-in-out;
}

0 comments on commit 77fc18f

Please sign in to comment.