Come nascondere il colore del bordo sinistro in Categoria?

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: