Arranging radio buttons horizontally

paste the following code into global.css, make sure your radioGroup is wide enough

[data-testid=“radioGroup”] {
display: flex !important;
flex-direction: row !important;
flex-wrap: wrap !important;
gap: 16px !important;
}


1 Like