소스 검색

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;