diff options
| author | Martijn Cuppens <[email protected]> | 2020-02-27 18:34:42 +0100 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-04-01 10:05:43 +0300 |
| commit | 05fb3905e696484f1c7b70b1d2160f6dd9fb4601 (patch) | |
| tree | 5a2c48b306b7c8619b99a0ca88bcfd3f27da5d74 | |
| parent | 062002d9521e2d3d77e9880f8b151bbbf05ef085 (diff) | |
| download | bootstrap-05fb3905e696484f1c7b70b1d2160f6dd9fb4601.tar.xz bootstrap-05fb3905e696484f1c7b70b1d2160f6dd9fb4601.zip | |
Fix border radii
| -rw-r--r-- | scss/_modal.scss | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scss/_modal.scss b/scss/_modal.scss index d898a6b0b..49f27d304 100644 --- a/scss/_modal.scss +++ b/scss/_modal.scss @@ -80,7 +80,6 @@ flex-direction: column; width: 100%; // Ensure `.modal-content` extends the full width of the parent `.modal-dialog` // counteract the pointer-events: none; in the .modal-dialog - height: 100%; color: $modal-content-color; pointer-events: auto; background-color: $modal-content-bg; @@ -215,13 +214,22 @@ margin: 0; .modal-content { + height: 100%; border: 0; @include border-radius(0); } + .modal-header { + @include border-radius(0); + } + .modal-body { overflow-y: auto; } + + .modal-footer { + @include border-radius(0); + } } } } |
