maxmarinich / react-alice-carousel

React responsive component for building content galleries, content rotators and any React carousels
MIT License
832 stars 91 forks source link

Feature request: Change dots container styles #310

Closed dogfrogfog closed 6 months ago

dogfrogfog commented 7 months ago

would love to see the way to override dots container styles or pass function to dots container

dogfrogfog commented 7 months ago

current solution is to override from global.css:

.alice-carousel__dots {
  margin: 0 !important;
}
maxmarinich commented 6 months ago

Hi, @dogfrogfog! The implementation an additional functionality is redundant for this issue. Use common solution:

ul.alice-carousel__dots {
    margin: 0;
}