1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-31 00:59:51 +02:00

fix fade animation for toast

This commit is contained in:
Johann-S
2018-12-06 13:53:01 +01:00
parent fc15c4c4ce
commit 1f4d7903db
2 changed files with 20 additions and 6 deletions

View File

@@ -1,5 +1,4 @@
.toast {
display: none;
max-width: $toast-max-width;
overflow: hidden; // cheap rounded corners on nested items
font-size: $toast-font-size; // knock it down to 14px
@@ -9,13 +8,23 @@
border-radius: $toast-border-radius;
box-shadow: $toast-box-shadow;
backdrop-filter: blur(10px);
opacity: 0;
+ .toast {
margin-top: $toast-padding-x;
}
&.showing {
opacity: 1;
}
&.show {
display: block;
opacity: 1;
}
&.hide {
display: none;
}
}