Align elements of the card on Sense theme

Hello everyone,

Link to shop - https://laromesss.myshopify.com/

Testing out some placements and playing around with cards. On a wide laptop screen, it is ok and the elements are aligned nicely:

But with smaller screens and on mobile (also in Shop All on desktop) it looks very weird and elements are located at different heights etc. Both on Home Screen and Shop All link:

How should I align these elements on all cards and all pages and also make the card width bigger on mobile?

Thanks in advance

@SpaKovsKi

Please add the following CSS code to your assets/base.css bottom of the file.

@media screen and (max-width: 749px){
.slider.grid--peek .grid__item {min-width: 90% !important;}
}

Thanks!

Hi @SpaKovsKi ,

Go to Assets > base.css and paste this at the bottom of the file:

@media screen and (max-width: 749px) {
  .collection .product-grid .slider__slide {
        width: calc(90% - var(--grid-mobile-horizontal-spacing) - 3rem) !important;
  }
}

Hope it helps!