I'm trying to change buttons default appearance on NativeScript core.light.css so after @import I added a few rules. Some are being applied but some others are not. I've been a web developer for a few years so I'm quite familiar with CSS/HTML but here I really miss a browser inspector to find out where's my mistake.
This is the CSS rule in app.css:
.nav Button {
border: 1px solid grey;
border-radius: 3px;
margin: 5px;
padding: 5px;
}
This is what I have on page.component.html:
<StackLayout class="nav">
<Button text="First"
[nsRouterLink]="['/first']"></Button>
<Button text="Second"
[nsRouterLink]="['/second']"></Button>
<Button text="Third"
[nsRouterLink]="['/third']"></Button>
<Button text="Fourth"
[nsRouterLink]="['/fourth']"></Button>
</StackLayout>
and this is how it looks like on iOS simulator:
Where are the 1px solid borders? What am I missing here?
