19 lines
228 B
SCSS
19 lines
228 B
SCSS
|
/*
|
||
|
* Owl Carousel - Lazy Load Plugin
|
||
|
*/
|
||
|
|
||
|
@import 'mixins';
|
||
|
|
||
|
.owl-carousel {
|
||
|
.owl-item {
|
||
|
.owl-lazy {
|
||
|
opacity: 0;
|
||
|
@include transition(opacity, 400ms, ease);
|
||
|
}
|
||
|
img{
|
||
|
transform-style: preserve-3d;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|