Reputation: 21802
I've just installed Breakpoint via bower and I'm using a sample right from the wiki: https://github.com/Team-Sass/breakpoint/wiki/Basic-Media-Queries
$pair: 456px 794px;
#foo {
@include breakpoint($pair) {
content: 'Paired Media Query';
}
}
I should see this output:
@media (min-width: 456px) and (max-width: 794px) {
#foo {
content: 'Paired Media Query';
}
}
Instead, I see this:
@media (min-width: 456px), (min-width: 794px) {
#foo {
content: 'Paired Media Query';
}
}
Could anyone help me resolve this? Thanks
Upvotes: 0
Views: 52
Reputation: 21802
I needed to add this line to my gruntfile.js > compass > options >
require: '<%= yeoman.app %>/bower_components/compass-breakpoint/lib/breakpoint',
Upvotes: 0