Reputation: 1414
How can I change the color of the bottom border in Nativescript-VueJS? (see image)
I tried the following:
border-bottom-color: transparent;
Upvotes: 0
Views: 233
I needed to use this instead:
background-color: transparent;
Upvotes: 2