Choice field, rounded corners

Hi,
Until recently Plumsail forms showed a choice field in the same format as SharePoint with rounded corners. But now it is square corners. It looks very blocky and unattractive now.
How would I get the original SharePoint format back with rounded corners?

Hi @peter.harrison,

The choice field has a complex layout with many containers. Could you take a screenshot and mark the corners you'd like rounded?

Thanks Ilia,
this is how the form renders:
image

and this is an example of the styling in SharePoint

image

Hi @peter.harrison,

This CSS snippet should help:

.fd-form .fd-choice__label{
    border-radius: 20px;
}
1 Like