diff --git a/src/core-components/button.scss b/src/core-components/button.scss index 1c8f3a6b..972ee375 100644 --- a/src/core-components/button.scss +++ b/src/core-components/button.scss @@ -2,10 +2,6 @@ .button { - &:focus { - outline: none; - } - &-primary { background-color: $primary-red; border: solid transparent; diff --git a/src/core-components/input.scss b/src/core-components/input.scss index 8a008948..4fa92705 100644 --- a/src/core-components/input.scss +++ b/src/core-components/input.scss @@ -8,4 +8,9 @@ &:hover { border-color: $dark-grey; } + + &:focus { + outline: none; + border-color: $primary-blue; + } } \ No newline at end of file