sahilsaha7773 / react-carousel-minimal

React.js Responsive Minimal Carousel
https://www.npmjs.com/package/react-carousel-minimal
MIT License
89 stars 38 forks source link

How to remove grey background slide #9

Open KevinMull opened 2 years ago

KevinMull commented 2 years ago

How do you remove the annoying grey background in between each image? It stays on the same duration that is set for the image

Lorenzo-Matei commented 2 years ago

I have the same issue. The workaround that I found is to remove the 'fade' in the class name of the items. You can see this working when you 'inspect element'. Each item will have 'fade' at the end of className. Remove it and the issue disappears.

talhasiddiquixd commented 1 year ago

i solved the similar issue by overriding a class in my global css file. You can get instant results via following code. .fade:not(.show) { opacity: inherit !important; }