Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 Bourbon 和 Neat 上构建一个 WordPress 主题。我正在使用 Codekit 来管理/编译 SASS。我查看了 bourbon Docs 并将其添加到我的 variables.scss 文件中:
$max-width: em(1200) !default;
然而,在这符合之后,外部容器的宽度仍然是 1088px。
我还注意到 $visual-grid 变量也不起作用。知道为什么这不起作用吗?
我需要删除!default;所以:
!default;
$max-width: em(1200);
解决了我的问题。