Skip to content

Commit

Permalink
[FIX] fix mobile menu on resizing event (Podio bug17)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmh committed May 31, 2016
1 parent 0596333 commit d7e28df
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions dev/styles/main/header/header.less
Original file line number Diff line number Diff line change
Expand Up @@ -558,12 +558,14 @@
transition: transform .2s linear, opacity .2s linear, visibility .2s linear, max-height .2s linear;
}

._open-mobile-dropdown .main-navigation__sub-item-list {
-webkit-transform: scale(1, 1);
transform: scale(1,1);
opacity: 1;
visibility: visible;
max-height: 100%;
@media (max-width: 991px) {
._open-mobile-dropdown .main-navigation__sub-item-list {
-webkit-transform: scale(1, 1);
transform: scale(1,1);
opacity: 1;
visibility: visible;
max-height: 100%;
}
}

.main-navigation__sub-item {
Expand Down

0 comments on commit d7e28df

Please sign in to comment.