xref: /plugin/combo/resources/theme/default/components/css/lazy-load-fade.css (revision 04fd306c7c155fa133ebb3669986875d65988276)
1.lazy-fade-cs {
2    animation-name: lazy-fade-cs;
3    animation-duration: 2s;
4}
5
6@keyframes lazy-fade-cs {
7    from {
8        opacity: 0;
9    }
10    to {
11        opacity: 1;
12    }
13}
14
15