ant-design-vue/components/vc-lazy-load/demo/style.less

19 lines
219 B
Plaintext

.LazyLoad {
opacity: 0;
transition: all 2s ease-in-out;
&.is-visible {
opacity: 1;
}
}
.filler {
height: 150px;
}
.ScrollableContainer {
height: 200px;
overflow: scroll;
background-color: grey;
}