This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
|
/*
|
|
* 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;
|
|
}
|
|
}
|
|
}
|
|
|