diff options
| author | Mark Otto <[email protected]> | 2017-12-26 16:49:35 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-12-27 17:56:28 -0800 |
| commit | 902390948440ba69388b31cd67966c3095ad81a4 (patch) | |
| tree | 1c3b5e1657cc8392672a91b94bdc7fadfdbd7f5e | |
| parent | 97cfe5a5820895348570ba1c2b67847715f1bca3 (diff) | |
| download | bootstrap-902390948440ba69388b31cd67966c3095ad81a4.tar.xz bootstrap-902390948440ba69388b31cd67966c3095ad81a4.zip | |
fix mixin include
| -rw-r--r-- | scss/_buttons.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_buttons.scss b/scss/_buttons.scss index a9216ced7..b2b6a1740 100644 --- a/scss/_buttons.scss +++ b/scss/_buttons.scss @@ -40,10 +40,10 @@ &:not([disabled]):not(.disabled):active, &:not([disabled]):not(.disabled).active { background-image: none; - box-shadow: $btn-active-box-shadow; + @include box-shadow($btn-active-box-shadow); &:focus { - @box-shadow: $btn-focus-box-shadow, $btn-active-box-shadow; + @include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow); } } } |
