I'm currently working on an Angular app and have encountered a task related to displaying 5 cards using mdbootstrap. I want to showcase these cards in a carousel format, but with a twist - I only want the carousel functionality to be active on mobile screens, while all 5 cards should be visible at once on larger screens. However, no matter how small my card width is, the carousel only displays one card. Does anyone have any suggestions on how to achieve this? Thank you!
Here's the code for my cards:
<div class="d-flex flex-column justify-content-end buttomdivheight" >
<div class="d-flex justify-content-between" >
<div class="d-flex flex-column align-self-end">
<span class="bottomtoptitles assesscolor" style="font-size: 0.8em">Projects </span>
<span class="bottomtoptitles assesscolor" style="font-size: 0.8em">to evaluate:</span>
<span class="bottombottomnumber assesscolorbottombackground"> 0/30</span>
</div>
<div class="d-flex flex-column">
<br>
<span class="bottomtoptitles assesscolor">Starts in:</span>
<span class="bottombottomnumber assesscolorbottombackground">00:00:00:00</span>
</div>
</div>
</div>
For more information on carousels, please visit this link.