mirror of https://github.com/twbs/bootstrap.git
				
				
				
			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:
		
							parent
							
								
									e0738f8207
								
							
						
					
					
						commit
						51b0c42778
					
				| 
						 | 
					@ -898,7 +898,7 @@ $toast-color:                       null !default;
 | 
				
			||||||
$toast-background-color:            rgba($white, .85) !default;
 | 
					$toast-background-color:            rgba($white, .85) !default;
 | 
				
			||||||
$toast-border-width:                1px !default;
 | 
					$toast-border-width:                1px !default;
 | 
				
			||||||
$toast-border-color:                rgba(0, 0, 0, .1) !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-box-shadow:                  0 .25rem .75rem rgba($black, .1) !default;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
$toast-header-color:                $gray-600 !default;
 | 
					$toast-header-color:                $gray-600 !default;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue