]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Use border-radius() mixin for toast
authorShohei Yoshida <ysds.code@gmail.com>
Wed, 19 Dec 2018 11:43:51 +0000 (20:43 +0900)
committerMark Otto <otto@github.com>
Fri, 21 Dec 2018 21:55:44 +0000 (13:55 -0800)
scss/_toasts.scss

index 5babc3e4f8a88d1e1e586e1d41a243321ce0b86b..e77cdaec7d49b161d176892338f513546e8e474d 100644 (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;