我正在尝试设置一个循环,该循环将使用我设置的另一个循环为我定义的每个断点创建一组类。这些是 BP 的
$mobileMedium : 480px;
$tabletVertical : 768px;
$desktopNormal : 1024px;
$desktopWide : 1200px;
这是我的scss。
@each $bpName in "mobileMedium", "tabletVertical", "desktopNormal", "desktopWide"{
@include breakpoint($$bpName) {
@include generate("$bpName", "Container", "width");
}
}
我希望有这样的东西(示例):
@media (min-width: 768px) {
.tabletVerticalContainer-1_12 {
width: 8.33333%;
}
但这就是终端返回的内容:
error sass/screen.scss (Line 36 of sass/_grid.scss:
Invalid CSS after "...ude breakpoint(": expected ")", was "$$bpName) {")
我想这归结为如何将文本('$')和参数中的变量结合起来。
有任何想法吗?