浏览代码

Fix bug where border-1, border-2, etc don't work (#1526)

Nick Anderson 2 年之前
父节点
当前提交
7cb84c846d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/scss/_utilities.scss

+ 1 - 1
src/scss/_utilities.scss

@@ -1,5 +1,5 @@
 $border-values: (
-  null: $border-width var(--#{$prefix}border-style) $border-color-translucent,
+  null: var(--#{$prefix}border-width) var(--#{$prefix}border-style) $border-color-translucent,
   wide: $border-width-wide var(--#{$prefix}border-style) $border-color-translucent,
   0: 0,
 );