Merge pull request #1406 from google/issue-1025

Set `visibility: hidden` on menu if not visible (fixes #1025)
This commit is contained in:
Surma 2015-08-17 13:54:20 +01:00
commit cf8dbe847c

View File

@ -26,10 +26,13 @@
overflow: visible;
height: 0;
width: 0;
visibility: hidden;
z-index: -1;
&.is-visible {
&.is-visible,
&.is-animating {
z-index: 999;
visibility: visible;
}
}