it would be nice if the form groups had more class names depending on the field type.
selector specificity needed
all of this form-groups looks same but they have different fields inside.
I want to select only lets say checkbox field but I cant since its not possible to select that group only
I usualy just select the nth-child but thats not the way to go soon as one of my team member changes something adds field or removes field my css style gets broken
You can hook into the form to generate responsive CSS for each repeater item based on its field ID, instead of relying on the default nth-child() selectors.
This way, field style controls will always be tied to their field IDs, ensuring that adding, removing, or reordering fields won’t affect the styles you’ve already assigned.