I try to implement the slick.js slider with dots in my website. slider dots are very small in size.can i change the size of the dots? or it's default one
my css
.slider {
width: 650px;
margin: 0 auto;
}
img {
width: 200px;
height: 200px;
}
my html
<div class="row">
<div class="col-sm-6">
<div class="slider-about">
<div class="slider">
<div>
<img src="resources/image/slide1.jpg">
</div>
<div>
<img src="resources/image/slide2.jpg">
</div>
<div>
<img src="resources/image/slide3.jpg">
</div>
<div>
<img src="resources/image/slide1.jpg">
</div>
<div>
<img src="resources/image/slide2.jpg">
</div>
<div>
<img src="resources/image/slide3.jpg">
</div>
</div>
</div>
</div>
</div>
my js :
$('.slider').slick({
slidesToShow: 3,
slidesToScroll: 3,
dots: true,
infinite: true,
cssEase: 'linear'
});