You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/vc-lazy-load/demo/style.less

19 lines
219 B

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