From 63dd021ceb2d075b620d3c8e5d5c321c4adce368 Mon Sep 17 00:00:00 2001 From: ErickSkrauch Date: Sat, 28 Jan 2017 19:25:43 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D1=86=D0=B2=D0=B5=D1=82=20=D1=82=D0=B5=D0=BA?= =?UTF-8?q?=D1=81=D1=82=D0=B0=20=D0=B4=D0=BB=D1=8F=20=D0=B1=D0=B5=D0=BB?= =?UTF-8?q?=D1=8B=D1=85=20=D0=BA=D0=BD=D0=BE=D0=BF=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ui/buttons.scss | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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;