Whenever I add a TelerkiCheckBox to a page/component the testers complain that they can't see the border of the checkbox so I'm constantly adding the below css to my razor files:
<style>
.k-checkbox {
/* Make the border a little darker than the default */
border-color: rgba(0, 0, 0, 0.4);
}
</style>
If I add this to my app.css it doesn't get applied.
Is there any way to apply this at a global level?