diff --git a/src/components/ui/buttons.scss b/src/components/ui/buttons.scss index 510c3fe..e146d29 100644 --- a/src/components/ui/buttons.scss +++ b/src/components/ui/buttons.scss @@ -1,14 +1,10 @@ @import './colors.scss'; @import './fonts.scss'; -@mixin button-theme($themeName, $backgroundColor, $textColor : $defaultButtonTextColor) { +@mixin button-theme($themeName, $backgroundColor) { .#{$themeName} { composes: button; - @if ($textColor != $defaultButtonTextColor) { - color: $textColor!important; - } - background-color: $backgroundColor; &:hover { @@ -29,7 +25,7 @@ border: none; font-family: $font-family-title; - color: $defaultButtonTextColor!important; + color: $defaultButtonTextColor; font-size: 18px; line-height: 50px; text-decoration: none;