With a high value for "paddings", the slider looks perfect in only one situation. As you make your screen width smaller, the paddings stay the same and the glide__slide divs become very small.
Is there a way to make responsive paddings, that change regarding the screen width?
A simple solution like giving the glide_slide a min-width will also solve the problem temporarily
Introduced with v3.0.0 release :)
Use breakpoints option when initializing glide. Example:
new Glide('.glide', {
peek: 100,
breakpoints: {
800: { peek: 50 },
480: { peek: 25 },
}
}).mount();
Most helpful comment
Introduced with
v3.0.0release :)Use
breakpointsoption when initializing glide. Example: