diff options
| author | Chris Rebert <[email protected]> | 2016-01-11 12:17:16 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-01-11 12:17:16 -0800 |
| commit | 4fae7cbc88f5bfb77573ea877d4f2d65b0b12506 (patch) | |
| tree | 9929427f68854cf865b85e209167bb171cb64f37 | |
| parent | 22df55f24d4030aaf1cf7f2aade030b40eb09d86 (diff) | |
| parent | ea4a79c6897a2b08ed8f218ce4a13cae9dfd1e82 (diff) | |
| download | bootstrap-4fae7cbc88f5bfb77573ea877d4f2d65b0b12506.tar.xz bootstrap-4fae7cbc88f5bfb77573ea877d4f2d65b0b12506.zip | |
Merge pull request #18844 from AndersSahlin/patch-1
Modal: Respect $enable-rounded setting
[skip sauce]
| -rw-r--r-- | scss/_modal.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_modal.scss b/scss/_modal.scss index 046810f5f..c88d085c9 100644 --- a/scss/_modal.scss +++ b/scss/_modal.scss @@ -49,7 +49,7 @@ background-color: $modal-content-bg; background-clip: padding-box; border: 1px solid $modal-content-border-color; - border-radius: $border-radius-lg; + @include border-radius($border-radius-lg); @include box-shadow(0 3px 9px rgba(0,0,0,.5)); // Remove focus outline from opened modal outline: 0; |
