ctfdavis / v-slick-carousel

V Slick Carousel for Vue 3
https://lambdadragon.dev/v-slick-carousel
MIT License
16 stars 5 forks source link

Change `responsive` to treat breakpoints as min-width #90

Closed ctfdavis closed 3 days ago

ctfdavis commented 2 weeks ago

The responsive setting currently turns input breakpoints into the below:

"(min-width: ${previousBreakpoint}px) and (max-width: ${breakpoint}px)"

Aligning with modern practices, the input breakpoints should be treated as min-width only instead:

"(min-width: ${breakpoint}px)"

ctfdavis commented 3 days ago

released in v0.5.0