center align checkbox label by default

This commit is contained in:
jeffvli
2025-10-08 21:36:11 -07:00
parent 6471114c28
commit b6e38815e3
2 changed files with 5 additions and 0 deletions
@@ -7,6 +7,10 @@
}
}
.body {
align-items: center;
}
.input:disabled {
border: 1px solid var(--theme-colors-border);
opacity: 0.6;
@@ -10,6 +10,7 @@ export const Checkbox = forwardRef<HTMLInputElement, CheckboxProps>(
return (
<MantineCheckbox
classNames={{
body: styles.body,
input: styles.input,
label: styles.label,
...classNames,