i am quite confused here.I am using Sass for Bourbon Neat and I am unable to set breakpoints using neat. Somehow they don't show up correctly in mobile and browser. here is the code
$mobile: new-breakpoint(max-width 800px 4);
$tablet: new-breakpoint(max-width 1335px 10);
$desktop: new-breakpoint(max-width 1920px 10);
But Somehow they are not working. Should i use min and max like this
$mobile: new-breakpoint(max-width 800px 4);
$tablet: new-breakpoint(min-width 801px 10);
$desktop: new-breakpoint(min-width 1337px 10);
Please give me some advice as i am totally not able to find the solution. thanks.