我只想在一个特殊的断点应用另一个网格布局(也许我做错了,这就是我的问题的原因......)
如果我尝试以下代码,我会得到错误:
已找到 @include 循环:断点处包含自身
#br-page-wrapper
{
@include container();
@include at-breakpoint($breakpoint-mobile-portrait)
{
@include with-grid-settings($layout-mobile-portrait)
{
@include container();
background: red;
}
}
}
var $layout-mobile-portrait 在我的 constants.scss 中定义:
$layout-mobile-portrait: 1 98% 2% 0;
但是,如果我用变量的值替换变量,我不会出错。