Close Gap Between Categories on Mobile

Hello!! :slight_smile:

I know how to handle basic features via CSS when I can inspect the page and find out what’s what. But in the case of the mobile version I’m unsure how to proceed.

I want to close the gap between categories

To make it look continuous, like it looks on desktop:

Captura de pantalla de 2022-04-11 20-21-25


Do anyone knows how to control that? Any hint would be much appreciated! :slight_smile:

Hello @lisandro_iaffar ,

Add this custom css to the mobile section.

This should work. :slightly_smiling_face:
I add back the margins to the first and last categories.

.category-list-item {
  margin: 0;
  &:first-child {
    margin-top: 1em;
  }
  &:last-child {
    margin-bottom: 2em;
  }
}
4 Likes

Awesome @Don !!! Thank you!!! :grin:

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.