Creating a checklist

I am trying to create a checklist for inspecting a vehicle before assigning it to a driver. I am attempting to make the check boxes physically large, not just the text. Is there a way to do this?

Hello @IT.Joe,

You can enlarge checkboxes using this CSS:

.fd-form .custom-control-label::before,
.fd-form .custom-control-label::after {
    top: .8rem;
    width: 1.25rem;
    height: 1.25rem;
}

Perfect Thanks for the quick update.

1 Like