In the fiddle i created four fields form and in that 3 text field and one check box, in that checkbox is not aligned properly, below the details to reproduce the issue

( OR )

Please help me to fix the issue with label and center aligned check box, Thanks
add this to your css
.ui.form .fields:not(.grouped):not(.inline) .field:not(:only-child) .ui.checkbox {
margin-top: 0.8em;
}
When I added it I thought people would be using the label inside the .ui.checkbox div because it's required to make the checkbox show up. Maybe we'd want to add an exception for a fitted checkbox? For example:
.ui.form .fields:not(.grouped):not(.inline) .field:not(:only-child) .ui.fitted.checkbox {
margin-top: 0.7rem;
}
I'm not sure, because this seems like a somewhat small exception.
Here's an updated fiddle https://jsfiddle.net/Luhzqgn9/
With slight adjustments of @GammaGames ' fiddle it doesn't even need the fitted variant of checkbox, so an additional label beside the checkbox is still working
.ui.form .fields:not(.grouped):not(.inline) .field:not(:only-child) label + .ui.checkbox {
margin-top: 0.7rem;
}
See https://jsfiddle.net/4poqja0t/
Who volunteers for a PR ? 馃槈
@lubber-de , @GammaGames , @maidzen Its working Thanks
Most helpful comment
With slight adjustments of @GammaGames ' fiddle it doesn't even need the
fittedvariant of checkbox, so an additional label beside the checkbox is still workingSee https://jsfiddle.net/4poqja0t/
Who volunteers for a PR ? 馃槈