Add Opacity to Feat Props

 avatar
user_3758723130
scss
a year ago
237 B
4
Indexable
/*START - add black opacity*/ 
.carousel-container{
    .item img{ 
        opacity:0.8;
        transition: 0.3s;
    }
    &:hover .item img{
        opacity:0.7;
        transition: 0.3s;
    }
}
/*END - add black opacity*/
Editor is loading...
Leave a Comment