Comment masquer la couleur de la bordure gauche dans Category ?

image

I hided in desktop using this code and Also want to hide in mobile.

.category-list tbody .category {
    border-left: none;
}

You can try to add:

.category-list .category {
    border-left: none;
}

Should work…

Thank you :slight_smile: