Add Opacity to Feat Props

user_3758723130 avatar
user_3758723130
scss
01/22/2024 9:53 PM
316 B
28
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