I'm having trouble getting my button to curve at specific corners in my NativeScript App. Below is the CSS code I've used:
border-bottom-left-radius: 10;
border-top-left-radius: 10;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
I have attempted adding 'px' units at the end, but it doesn't seem to work with Angular2 CSS. I also tried combining them into one line like this:
border-radius: 3px 3px 0px 0px;
but neither with nor without 'px' worked.