diff --git a/src/style/_base.scss b/src/style/_base.scss index 35b8aed..79df236 100644 --- a/src/style/_base.scss +++ b/src/style/_base.scss @@ -33,6 +33,9 @@ figure, picture { nav li:before { display: none; } +label { + cursor: pointer; +} button { background: none; border: none; diff --git a/src/style/_effects.scss b/src/style/_effects.scss index dd06cb7..c8f213f 100644 --- a/src/style/_effects.scss +++ b/src/style/_effects.scss @@ -65,7 +65,7 @@ opacity: 0; } } - &:hover { + &:not([disabled]):hover { .text-split__line { &:first-child { opacity: 0; diff --git a/src/style/atoms/_button.scss b/src/style/atoms/_button.scss index d3c0e3c..1896bee 100644 --- a/src/style/atoms/_button.scss +++ b/src/style/atoms/_button.scss @@ -100,7 +100,7 @@ color: $color-primary-tertiary20; } } - &:hover { + &:not([disabled]):hover { background: darken($color-button, 2.5); } }