Hamburgers Versions Save

Tasty CSS-animated Hamburgers

v1.2.0

2 years ago

Fixed

v1.1.3

5 years ago

Fixed

  • !important for types that rely on background-color: transparent.

v1.1.2

5 years ago

Bug fixes in v1.1.3

Fixed

  • Change default value of $hamburger-active-hover-opacity to $hamburger-hover-opacity.
  • Change default value of $hamburger-active-hover-filter to $hamburger-hover-filter.

v1.1.0

5 years ago

Bug fixes in v1.1.3

Added

  • Changing color of the hamburger in the active state thanks to @andreamaiolo #20

Fixed

  • Removed $hamburger-hover-transition-duration and $hamburger-hover-transition-timing-function—types rely on custom timing, which render these useless.

v0.9.3

6 years ago

Fixed

  • Missing @if statements in arrowturn and arrowturn-r variants #51.
  • Update docs with correct yarn install command #45.
  • Correct eyeglass-module tag in package.json #48.

v0.9.1

6 years ago

Added

  • Add new types: 3dxy, 3dxy-r, arrowturn, arrowturn-r, minus

Updated

  • Include missing and new types in dist/example.html.
  • Update dependencies and include package-lock.json.

v0.8.1

7 years ago

Updated

  • Faster animations.
  • Improved accessibility documentation thanks to @scottaohara #baf5b5e.

v0.7.0

7 years ago

Added

v0.6.0

7 years ago

Fixed

v0.5.0

8 years ago

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 {
   }
}