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.
This commit is contained in:
Ted Kesgar 2019-04-08 19:06:48 +07:00 committed by XhmikosR
parent e0738f8207
commit 51b0c42778
1 changed files with 1 additions and 1 deletions

View File

@ -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;