fix for ie bug where drop down menus were still clickable when collapsed

This commit is contained in:
Frances Botsford
2013-07-31 12:17:21 -04:00
parent 15859dd880
commit 9ab21be98c

View File

@@ -64,12 +64,14 @@ nav {
opacity: 0.0;
pointer-events: none;
width: ($baseline*8);
overflow: hidden;
// dropped down state
&.is-shown {
opacity: 1.0;
pointer-events: auto;
overflow: visible;
}
}