从手写笔变量评估规则
Evaluate rule from stylus variable
我想要 hide
和 show
shorthand 来写这样的东西:
hide = 'display: none !important'
show = 'display: block !important'
.my-button
{show}
+mobile()
{hide}
当前的 Stylus 语法中有类似的东西吗?
您可以为此使用 @block
。参见 an example。
我想要 hide
和 show
shorthand 来写这样的东西:
hide = 'display: none !important'
show = 'display: block !important'
.my-button
{show}
+mobile()
{hide}
当前的 Stylus 语法中有类似的东西吗?
您可以为此使用 @block
。参见 an example。