Text after radio not wrapping if it exceed the view width

Hi, when the text in the radio label exceeds the view width, it is not wrapping up properly as you could see in above. Is there any property so i can set to wrap the text next to the radio icon.

This seems like a bug... I don't think anyone would want the radio buttons and their text to not be aligned with each other... (unless they're a customer doing their own work of course :face_with_hand_over_mouth:)

You can fix it by adding this to your stylesheet:

.ia_radioGroupComponent_radioWrapper--row {
    flex-flow: nowrap;
}
1 Like

Thank you, it's working perfectly now! I wasn’t aware that components in Perspective could be customized this way — I’m still gradually learning how everything fits together. Is this kind of information available in the official documentation or manual? I’d really appreciate it if you could point me to a reliable source so I can study it further.