
I hided in desktop using this code and Also want to hide in mobile.
.category-list tbody .category {
border-left: none;
}

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 