Skip to content

Latest commit

 

History

History
59 lines (48 loc) · 1.56 KB

CHANGELOG.md

File metadata and controls

59 lines (48 loc) · 1.56 KB

Changelog

Changelog for Hamburgers.

[0.5.0] - 04/04/2016

Fixed

  • Error: Import directives may not be used within control directives or mixins. in certain cases like when compiling with Ruby Sass.
    Solution: @import all available types and instead nest Sass for each type in @if directive which checks to see if the type exists in $hamburger-types. e.g.:
@if index($hamburger-types, 3dx) {
   .hamburger--3dx {
   }
}

[0.4.0] - 03/28/2016

Improved

  • Customize the including/excluding of hamburger types in settings as $hamburger-types Sass list (e.g. If someone includes Hamburgers via npm or Bower, they don’t have to modify the source files in node_modules or bower_components.)

[0.3.0] - 03/07/2016

Fixed

  • Top positioning bug for Elastic and Slider (#13fa295).

Added

  • 4 hamburger types (with reverse variants)

    hamburger--3dx
    hamburger--3dx-r
    hamburger--3dy
    hamburger--3dy-r
    hamburger--spring
    hamburger--spring-r
    hamburger--stand
    hamburger--stand-r
    

[0.2.0] - 03/04/2016

Added

  • Supports and favors more accessible and semantic markup:

    <button class="hamburger" type="button">
      <span class="hamburger-box">
        <span class="hamburger-inner"></span>
      </span>
    </button>
    

[0.1.6] - 03/02/2016

Added

[0.1.5] - 03/02/2016

Added

  • Ability to customize border-radius of hamburger layers.

[0.1.3] - 03/02/2016

  • Public release.