Skip to content
This repository has been archived by the owner on Nov 3, 2020. It is now read-only.

Commit

Permalink
fix issue with libsass compat. close #40. fix #36. fix #38.
Browse files Browse the repository at this point in the history
  • Loading branch information
ezekg committed Nov 12, 2015
1 parent 7f4b48d commit 59b9159
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/flint/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Flint
VERSION = "2.3.3"
VERSION = "2.3.4"
end
5 changes: 4 additions & 1 deletion stylesheets/flint/functions/lib/_instance.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,13 @@
// Lets clean up the selector a bit...
$selector: nth(&, 1);

// Get the selector family instance
$family-instance: flint-has-family-instance($key);

$flint-instance: (
"#{$selector}::#{$key}": (
"instance-count": $flint-instance-count,
"parent-selector": if(flint-has-family-instance($key) != false, flint-has-family-instance($key), none),
"parent-selector": if($family-instance != false, $family-instance, none),
"key": $key,
"breakpoint": flint-get-value("breakpoints", $key, "breakpoint"),
"columns": flint-get-value("breakpoints", $key, "columns"),
Expand Down

0 comments on commit 59b9159

Please sign in to comment.