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.
19 lines
219 B
19 lines
219 B
7 years ago
|
.LazyLoad {
|
||
|
opacity: 0;
|
||
|
transition: all 2s ease-in-out;
|
||
|
|
||
|
&.is-visible {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.filler {
|
||
|
height: 150px;
|
||
|
}
|
||
|
|
||
|
.ScrollableContainer {
|
||
|
height: 200px;
|
||
|
overflow: scroll;
|
||
|
background-color: grey;
|
||
|
}
|