Single Choice - Increase Distance

I would like to know how I can increase the distance between two choices on a vertical Single Choice field. I'm using a public form.

Hello @adasilva,

Add a CSS class to the field, e.g. my-field and the CSS to add padding between options:

.my-field .form-check {
    padding-bottom: 10px;
}

image

1 Like