style.less 219 Bytes
Newer Older
liang ce committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
.LazyLoad {
  opacity: 0;
  transition: all 2s ease-in-out;

  &.is-visible {
    opacity: 1;
  }
}

.filler {
  height: 150px;
}

.ScrollableContainer {
  height: 200px;
  overflow: scroll;
  background-color: grey;
}