zahmis 5 лет назад
Родитель
Сommit
fc760823e5
1 измененных файлов с 2 добавлено и 3 удалено
  1. 2 3
      src/client/styles/scss/theme/_reboot-bootstrap-theme-colors.scss

+ 2 - 3
src/client/styles/scss/theme/_reboot-bootstrap-theme-colors.scss

@@ -1,8 +1,7 @@
 $theme-colors: map-merge($theme-colors, $colors);
 
-@mixin button-svg-icon-variant($color, $bordercolor) {
+@mixin button-svg-icon-variant($color) {
   svg {
-    border-color: $bordercolor;
     fill: $color;
   }
   &.disabled,
@@ -61,7 +60,7 @@ $theme-colors: map-merge($theme-colors, $colors);
 @each $color, $value in $theme-colors {
   .btn-#{$color} {
     @include button-variant($value, $value);
-    @include button-svg-icon-variant($value, $value);
+    @include button-svg-icon-variant($value);
   }
 }