Hello!
If anyone is interested in how the cards can be displayed on tablets and mobile phones so that they don't take up a lot of space, I wrote some very simple code.
I tried it on my phone and tablet and it works perfectly for me.
The point is that you can roll the cards sideways back there.
You just need to paste the code in the admin CSS section
.cards-wrapper {
display: flex !important;
margin-bottom: 0px !important;
}
.cardContainer {
display: flex !important;
flex-wrap: nowrap !important;
overflow-x: auto !important;
scrollbar-width: none !important;
}