akiran / react-slick

React carousel component
http://react-slick.neostack.com/
MIT License
11.61k stars 2.09k forks source link

Not able to change size of arrows of Slider #2320

Closed SoniRe closed 5 months ago

SoniRe commented 6 months ago

Just want to change the size of god damn arrows.

-> Its not working even after changing height, width, font size -> But it changes background color and other stuff

akiran commented 5 months ago

You need to change height and width on .slick-prev, .slick-next and fontsize on .slick-prev:before, .slick-next:before

Try this

.slick-prev,
.slick-next {
  height: 40px;
  width: 40px;
}
.slick-prev:before,
.slick-next:before {
  font-size: 40px;
}