Skip to content

Commit

Permalink
Bug fix for state
Browse files Browse the repository at this point in the history
  • Loading branch information
Snugug committed Apr 27, 2014
1 parent c31c9b8 commit 2bf5779
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/north.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
Compass::Frameworks.register("north", :path => base_directory, :stylesheets_directory => stylesheets_dir)

module North
VERSION = "0.3.0"
VERSION = "0.3.1"
DATE = "2014-04-27"
end
11 changes: 9 additions & 2 deletions north/north/_helpers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,15 @@
}
}
@each $name in $names {
&--#{call($type, $name)} {
@extend %#{$extend};
@if $type == 'state' {
&#{call($type, $name)} {
@extend %#{$extend};
}
}
@else {
&--#{call($type, $name)} {
@extend %#{$extend};
}
}
}
}
Expand Down

0 comments on commit 2bf5779

Please sign in to comment.