UX: makes reports fade in when loading is done (#6440)

This commit is contained in:
Joffrey JAFFEUX 2018-10-02 09:20:04 +02:00 committed by GitHub
parent e0d7cdac12
commit f34d9202b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,4 +13,27 @@
font-weight: 700;
}
}
&:not(.is-loading) {
animation: fadein 0.5s;
-webkit-animation: fadein 0.5s;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
}