Skip to content

Commit

Permalink
Merge pull request #18 from lejoe/patch-4
Browse files Browse the repository at this point in the history
Corrects the css attr setting with scss variables
  • Loading branch information
meodai committed Jun 10, 2015
2 parents 4f8d50f + 15a2eb3 commit 0b337e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _mediaqueries.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ $mediaJSON: $mediaJSON + '}';
// an element with this class will be created with JS in order to parse the JSON content
.js-breakpoint:after,
.js-breakpoint {
content: "#{$mediaJSON}";
font-family: "#{$mediaJSON}";
content: $mediaJSON;
font-family: $mediaJSON;
}

0 comments on commit 0b337e7

Please sign in to comment.