浏览代码

fix🐛: 修复 This deprecation does not affect uses of / inside calc() expressions.的警告问题

zhangwenjian 2 年之前
父节点
当前提交
8a4234abda
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/styles/mixin.scss

+ 1 - 1
src/styles/mixin.scss

@@ -34,7 +34,7 @@
 }
 
 @mixin triangle($width, $height, $color, $direction) {
-  $width: $width/2;
+  $width: $width*0.5;
   $color-border-style: $height solid $color;
   $transparent-border-style: $width solid transparent;
   height: 0;