We need size variations for checkboxes at least (not talking about toggles) - big, large, very large
Agreed, this is difficult because this is one of the only components sized with px due to rounding issues.
+1
+1
+1
agreed, when is gong to be available?
Please use the github reactions instead of commenting +1.
Cheers 馃
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions.
Still actual, please reopen
has anyone found a way to increase checkbox sizes?
It's requested in 2016 and it's 2018 now, still nothing?
I increased the size of a checkbox by adding a CSS rule
.myCheckbox {
transform: scale(2);
}
Adding following CSS rules may help:
.checkbox label:before {
transform: scale(0.5);
}
.checkbox label:after {
transform: scale(0.5);
}
Fixed for Fomantic-UI by https://github.com/fomantic/Fomantic-UI/pull/886
See https://jsfiddle.net/wtrxjupk/

Most helpful comment
Please use the github reactions instead of commenting +1.
Cheers 馃