From cb156ec34c853eb80dd9944e0ac2e1fe2a89faff Mon Sep 17 00:00:00 2001 From: rychagoff Date: Mon, 17 Jun 2024 15:35:04 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=80=D0=B0=D0=B2=D0=BA=D0=B8=20=D1=81?= =?UTF-8?q?=D0=BE=D1=81=D1=82=D0=BE=D1=8F=D0=BD=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/styles/blocks/button.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/styles/blocks/button.scss b/source/styles/blocks/button.scss index e48f9cf3..4c24e04e 100644 --- a/source/styles/blocks/button.scss +++ b/source/styles/blocks/button.scss @@ -12,4 +12,17 @@ &--accent { background-color: $base-primary; } + + &:hover, + &:focus { + background-color: $primary-lighter; + } + + &:active { + background-color: $primary-darker; + } + + &--accent:disabled { + background-color: $base-grey; + } }