the problem is i use a couple reactSlick component in my react Apps, in home and the others is in team Page, i already customize in globall.css (nextjs) for the homepage, now i wanna change classes named .slick-list
in tournament page that some how generated automatic using <Slider></Slider>
is theres any solution to change the class css, and the other page not include in it ? i wanna ad inline css but i cant found any explanation of .slick-list to edit it, instead of in global.css
my code is below :
<Slider {...settings}>
{sliderData.map((slide, index) => {
return (
<div
className='TeamSlider'
key={index}
style={{ height: '185px !important' }}
>
<img src={slide.image} alt='slider' key={index} />
</div>
)
})}
</Slider>