diff options
| author | Ted Kesgar <[email protected]> | 2019-04-08 19:06:48 +0700 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-04-08 15:06:48 +0300 |
| commit | 51b0c42778c5cb32ca8feea37c7e4012ddf64647 (patch) | |
| tree | b35e10c4f66e18f9e2d0372949dc58d63fbe25ea | |
| parent | e0738f82070354423e376a42d264d0d52d93af45 (diff) | |
| download | bootstrap-51b0c42778c5cb32ca8feea37c7e4012ddf64647.tar.xz bootstrap-51b0c42778c5cb32ca8feea37c7e4012ddf64647.zip | |
Change toast border radius to use `$border-radius` (#28621)
Currently, `$toast-border-radius` uses the value of `.25rem`. This is inconsistent with other variables such as `$btn-border-radius` and `$input-border-radius`, which uses the "global" `$border-radius` variable.
| -rw-r--r-- | scss/_variables.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss index 89b60c0a9..7e6bb888d 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -898,7 +898,7 @@ $toast-color: null !default; $toast-background-color: rgba($white, .85) !default; $toast-border-width: 1px !default; $toast-border-color: rgba(0, 0, 0, .1) !default; -$toast-border-radius: .25rem !default; +$toast-border-radius: $border-radius !default; $toast-box-shadow: 0 .25rem .75rem rgba($black, .1) !default; $toast-header-color: $gray-600 !default; |
