0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00

Use border-radius() mixin for toast

This commit is contained in:
Shohei Yoshida 2018-12-19 20:43:51 +09:00 committed by Mark Otto
parent fc841b0ceb
commit cda3301d08

View File

@ -5,10 +5,10 @@
background-color: $toast-background-color;
background-clip: padding-box;
border: $toast-border-width solid $toast-border-color;
border-radius: $toast-border-radius;
box-shadow: $toast-box-shadow;
backdrop-filter: blur(10px);
opacity: 0;
@include border-radius($toast-border-radius);
&:not(:last-child) {
margin-bottom: $toast-padding-x;