I'm using neat bourbon and try to use its new-breakpoint mixin but it doesn't work. I can already say that I loaded first bourbon, than grid and breakpoints.scss and than neat
So I can see changes when i write:
@include media(max-width 500px) {
@include span-columns(12);
background: red;
}
but not when i write:
$mobile: new-breakpoint(max-width 500px);
@include media($mobile) {
@include span-columns(4);
background: red;
}
Any idea why?