我在这里很困惑。我将 Sass 用于 Bourbon Neat,但我无法使用 Neat 设置断点。不知何故,它们无法在移动设备和浏览器中正确显示。这是代码
$mobile: new-breakpoint(max-width 800px 4);
$tablet: new-breakpoint(max-width 1335px 10);
$desktop: new-breakpoint(max-width 1920px 10);
但不知何故,他们不工作。我应该像这样使用最小值和最大值吗
$mobile: new-breakpoint(max-width 800px 4);
$tablet: new-breakpoint(min-width 801px 10);
$desktop: new-breakpoint(min-width 1337px 10);
请给我一些建议,因为我完全无法找到解决方案。谢谢。