When using a the RadioButtonGroup the selected button will have a white focus box which looks rather “ugly”. Any chance to get rid of that?
I think you would need to resort to CSS tweaks. See How to change Select color, similar to Dropdown - #3 by mateusz for a similar question with a detailed answer.
Works as intended with
":focus:not(:focus-visible) { outline:none; box-shadow:none;}"
1 Like