Commit 66e6ae2e authored by JC Brand's avatar JC Brand

Increase `fade` transition, to work around timing bug

in bootstrap.native.

https://github.com/thednp/bootstrap.native/issues/192
parent e344bf76
......@@ -4911,6 +4911,9 @@ body.reset {
opacity: 0; }
100% {
opacity: 1; } }
#conversejs .fade {
opacity: 0;
transition: opacity 0.20s linear; }
#conversejs .fade-in {
opacity: 0;
/* make things invisible upon start */
......
......@@ -4911,6 +4911,9 @@ body.reset {
opacity: 0; }
100% {
opacity: 1; } }
#conversejs .fade {
opacity: 0;
transition: opacity 0.20s linear; }
#conversejs .fade-in {
opacity: 0;
/* make things invisible upon start */
......
......@@ -242,6 +242,11 @@ body.reset {
100% { opacity: 1 }
}
.fade {
opacity: 0;
transition: opacity 0.20s linear;
}
.fade-in {
@include fade-in;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment