Jelajahi Sumber

rename variable

kaori-t 5 tahun lalu
induk
melakukan
48c12dcf99
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  1. 2 2
      src/client/styles/scss/_mixins.scss

+ 2 - 2
src/client/styles/scss/_mixins.scss

@@ -224,14 +224,14 @@
   transition-duration: 300ms;
 }
 
-@mixin three-stranded-button($textColor, $borderColor, $bgHoverColor, $bgColor: white) {
+@mixin three-stranded-button($textColor, $borderColor, $bgColorHoverAndActive, $bgColor: white) {
   color: $textColor;
   background-color: $bgColor;
   border-color: $borderColor;
   &:hover,
   &:active {
     color: $textColor;
-    background-color: $bgHoverColor;
+    background-color: $bgColorHoverAndActive;
     border-color: $borderColor;
   }
 }