手写笔:预期为“缩进”,为“突出”

时间:2018-09-17 13:18:27

标签: css stylus

我是触控笔的新手。尝试列出诸如.mt--20, .mt--30, .mt--35 etc.

之类的规则

我收到此错误

enter image description here

我的手写笔代码:

margin(postfix, side, numbers)
  .m{postfix}
    for n in numbers
      &--{n}
        margin-{side} {n}px
    for n in numbers
      &--{n}-xs
        @media $media-max-1366
          margin-{side} {n}px
    for n in numbers
      &--{n}-lg
        @media $media-min-1366
          margin-{side} {n}px

list = 5 10 15 20 25 30 35 40 45 50 55 60

margin(b, bottom, list)
margin(t, top, list)
margin(l, left, list)
margin(r, right, list)

我在做什么错了?

1 个答案:

答案 0 :(得分:0)

错误是由于您插值Source Target Label Weight 0 1 anger 2 0 1 anticipation 1 . . .#etc 。在n之后,您不需要插值。

解决方案:

margin-{side}

这里是CodePen,您可以在其中查看编译的源(无错误)。