-
Notifications
You must be signed in to change notification settings - Fork 437
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UiCheckbox border-radius doesn't hide overflow #471
Comments
.ui-checkbox__checkmark {
border-radius: $ui-default-border-radius;
overflow: hidden;
&::before {
border-radius: 0 !important;
}
} fixes it, I think. Setting any border-radius to |
The artifact is actually the white background from the Can be fixed without overriding the .ui-checkbox__checkmark {
border-radius: 0.125rem;
} PR welcome 🙂 |
Actually when both elements have the same border-radius, I think there still appears an artifact on their edges — a jagged edge where the browser overlays their antialiased semitransparent pixels. |
On background other than white it doesn't look too good.
The text was updated successfully, but these errors were encountered: