frankyonnetti
11/12/2015 - 4:46 PM

#sass #css Expand element, e.g. mobile menu.

Scss - expand menu #sass #css

.class-name {
  max-height: 0;
  overflow: hidden;
  @include transition(max-height 0.3s ease-out);

  &.opened {
    max-height: 85em;
  }
}