Releases: jonsuh/hamburgers
Releases · jonsuh/hamburgers
v1.2.0
v1.1.3
v1.1.2 (Deprecated)
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)
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
v0.9.1
v0.8.1
v0.7.0
v0.6.0
v0.5.0
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 {
}
}