Skip to content

Releases: jonsuh/hamburgers

v1.2.0

15 Mar 14:29
a5f6026
Compare
Choose a tag to compare

Fixed

  • Sass 2.0 compatibility, specifically slash-as-divison operator thanks to @lewebsimple #105

v1.1.3

25 Sep 14:14
Compare
Choose a tag to compare

Fixed

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

v1.1.2 (Deprecated)

25 Sep 13:39
Compare
Choose a tag to compare

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 (Deprecated)

25 Sep 12:21
Compare
Choose a tag to compare

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

15 Jan 15:30
Compare
Choose a tag to compare

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

07 Jul 01:49
Compare
Choose a tag to compare

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

17 Mar 02:16
Compare
Choose a tag to compare

Updated

v0.7.0

01 Dec 15:35
Compare
Choose a tag to compare

Added

v0.6.0

22 Nov 15:25
Compare
Choose a tag to compare

Fixed

  • Fix spin-r’s .is-active::after rotation. See #28.

v0.5.0

04 Apr 18:01
Compare
Choose a tag to compare

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