the ngx-owl-carousel items don't have css property maximising width for responsivity aim, I use the following custom options
customOptions: OwlOptions = {
loop: true,
margin: 10,
navSpeed: 700,
responsive: {
0: {
items: 1
},
400: {
items: 2
},
740: {
items: 3
},
940: {
items: 4
}
}
};
the probelm is that in case when I have just one element to show, this last will take all parent width; is there an option to tell owl-carousel to consider the calculated width ? Thanks