diff options
| author | Chirag Modi <[email protected]> | 2017-10-02 06:29:26 +0530 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-10-01 17:59:26 -0700 |
| commit | 487e5f8b827572892ba73efeabff14b1397d246b (patch) | |
| tree | 999fb1d269eeeb783af6f56aea4ed79e84f990f4 | |
| parent | deced1bf4db812b5ae22da5eb62b9643973954b3 (diff) | |
| download | bootstrap-487e5f8b827572892ba73efeabff14b1397d246b.tar.xz bootstrap-487e5f8b827572892ba73efeabff14b1397d246b.zip | |
remove Dist fils as per suggestion (#23092)
| -rw-r--r-- | scss/_input-group.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scss/_input-group.scss b/scss/_input-group.scss index 95b17be47..b8e2bbe19 100644 --- a/scss/_input-group.scss +++ b/scss/_input-group.scss @@ -165,7 +165,8 @@ > .btn, > .btn-group { z-index: 2; - margin-left: (-$input-btn-border-width); + // remove nagative margin ($input-btn-border-width) to solve overlapping issue with button. + margin-left: 0; // Because specificity @include hover-focus-active { z-index: 3; |
