diff options
| author | Doug Puchalski <[email protected]> | 2018-10-21 01:09:08 -0600 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2018-10-21 10:09:08 +0300 |
| commit | 59f1802e985399b95b7f3ff1136ac3eaa83b8897 (patch) | |
| tree | 966bfb26c9223a769ed493a7f86002278f149e6b | |
| parent | 50d866da24dee99226fb3f915bf7cda89edc6c92 (diff) | |
| download | bootstrap-59f1802e985399b95b7f3ff1136ac3eaa83b8897.tar.xz bootstrap-59f1802e985399b95b7f3ff1136ac3eaa83b8897.zip | |
Outline button variant hover mixin (#27289)
The outline button variant mixin should use the hover mixin, as does the non-outline version.
| -rw-r--r-- | scss/mixins/_buttons.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/mixins/_buttons.scss b/scss/mixins/_buttons.scss index 6e9e92290..e356c7928 100644 --- a/scss/mixins/_buttons.scss +++ b/scss/mixins/_buttons.scss @@ -62,7 +62,7 @@ color: $color; border-color: $color; - &:hover { + @include hover { color: $color-hover; background-color: $active-background; border-color: $active-border; |
