diff options
| author | Eugene Kopyov <[email protected]> | 2017-10-22 21:54:32 +0200 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-10-22 12:54:32 -0700 |
| commit | 0a82cd9f3c44904d931614dba267295231e85f90 (patch) | |
| tree | c68d5933b2af12c582bd2356e1bc92111ef240e7 | |
| parent | 4bd4ff113089c2ddfc65cebf152b538ff84db161 (diff) | |
| download | bootstrap-0a82cd9f3c44904d931614dba267295231e85f90.tar.xz bootstrap-0a82cd9f3c44904d931614dba267295231e85f90.zip | |
Fix for right padding in dismissible alerts (#24481)
* Fix for right padding in dismissible alerts
* Removed extra whitespace
* Update _alert.scss
* Update _alert.scss
| -rw-r--r-- | scss/_alert.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scss/_alert.scss b/scss/_alert.scss index 66fba24ea..c2d5c8109 100644 --- a/scss/_alert.scss +++ b/scss/_alert.scss @@ -27,6 +27,8 @@ // Expand the right padding and account for the close button's positioning. .alert-dismissible { + padding-right: ($close-font-size + $alert-padding-x * 2); + // Adjust close link position .close { position: absolute; |
