I'm currently working on a simple web application using Bootstrap for styling. While I really like the overall look of Bootstrap, I've run into an issue with the appearance of my radio buttons when I adjust the font size in my HTML.
Here is a snippet of my CSS style:
* {
height: 100%;
font-size: 14px;
font-family: 'Roboto';
}
With the above code, my radio buttons end up looking like this:
https://i.sstatic.net/y3HZy.png
The white circle in the radio button is not positioned correctly. However, if I remove the font-size property from my CSS, the radio button appears as intended:
https://i.sstatic.net/Kwn9o.png
I'm hoping someone can offer some advice or assistance on how to resolve this issue. Thank you in advance.