So I am new to Sass and Bourbon with Neat and for some reason the breakpoints I am using dont seem to be responding. I have the Sass importing like so
//Bourbon
@import "bourbon/app/assets/stylesheets/bourbon";
//Neat
@import "neat/app/assets/stylesheets/neat";
// Scut, a Sass utilities library: https://davidtheclark.github.io/scut/
@import "scut/dist/scut";
// Configuration variables
@import "config";
// Configuration layouts
@import "layout";
In Configs I have
$break-tablet: new-breakpoint(min-width 480px, 6);
$break-desktop: new-breakpoint(min-width 761px, 10);
Then in layout I would use something like this with no luck
#responsive-menu-toggle {
@include media($break-desktop) {
display: none;
}
}
Am I missing something??
Complies as
@media screen and (min-width: min-width 761px 100px) {
#responsive-menu-toggle {
display: none; } }