I have a 9 key number pad that I want to have rounded borders. When I set the border-radius to the style property inline for each button it works just fine
<button id="numpadOne" class="numpad-button"
data-bind="click: numpadButtonPressed" style="border-radius: 30px"></button>
and the css for numpad-button being
.numpad-button {
min-width: 100%;
min-height: 100%;
margin: 0px;
}
As soon as I add the border-radius property to numpad-button class and remove it from inline it doesn't work anymore. Any ideas?