You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems as the inner of the radio button is positioned absolute with pixels, i temporarily fixed the problem by positioning it with the following css:
.alert-radio-icon {
display: flex;
align-items: center;
justify-content: center;
}
.alert-radio-inner {
position: unset;
}
The text was updated successfully, but these errors were encountered:
Prerequisites
Ionic Framework Version
v8.x
Current Behavior
The radio button inner of a selected element is on some display resolutions not perfectly centered:
Expected Behavior
The radio button inner should be centered on all devices
Steps to Reproduce
look at radio buttons on different devices. Easily reproduceable if application is run in a web browser
Code Reproduction URL
https://stackblitz.com/run?file=package.json
Ionic Info
Ionic:
Ionic CLI : 6.18.0
Utility:
cordova-res : 0.15.4
native-run : 1.5.0
System:
NodeJS : v18.17.1
npm : 10.0.0
OS : Windows 10
Additional Information
It seems as the inner of the radio button is positioned absolute with pixels, i temporarily fixed the problem by positioning it with the following css:
.alert-radio-icon {
display: flex;
align-items: center;
justify-content: center;
}
The text was updated successfully, but these errors were encountered: