diff options
| author | Mark Otto <[email protected]> | 2015-08-20 21:07:04 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-08-20 21:07:04 -0700 |
| commit | f0929435fd7f3cf4ab9045901ba927c42656d3d3 (patch) | |
| tree | 7694baa368878a7026f00d8dcb05822854b636cc | |
| parent | 90a14fdfc67d7274aa0658437740fb91d612dbb8 (diff) | |
| parent | 477790c6721d6de682dbd82457a1c8f5480074ff (diff) | |
| download | bootstrap-f0929435fd7f3cf4ab9045901ba927c42656d3d3.tar.xz bootstrap-f0929435fd7f3cf4ab9045901ba927c42656d3d3.zip | |
Merge pull request #17161 from kkirsche/patch-22
v4 - Use border-radius mixin in form-control-sm and form-control-lg
| -rw-r--r-- | scss/_forms.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_forms.scss b/scss/_forms.scss index 9888da1d6..6eafd53ca 100644 --- a/scss/_forms.scss +++ b/scss/_forms.scss @@ -148,7 +148,7 @@ padding: $input-padding-y-sm $input-padding-x-sm; font-size: $font-size-sm; line-height: $line-height-sm; - border-radius: $input-border-radius-sm; + @include border-radius($input-border-radius-sm); } .form-control-lg { @@ -156,7 +156,7 @@ padding: $input-padding-y-lg $input-padding-x-lg; font-size: $font-size-lg; line-height: $line-height-lg; - border-radius: $input-border-radius-lg; + @include border-radius($input-border-radius-lg); } |
