fix(ui): unify checkbox size — drop size="small" on raw checkboxes

The kit CheckboxField (used on most pages) renders MUI's default medium checkbox, but four raw <Checkbox> usages forced size="small": OfferDetail's 'V ceně' table cell and 'Účtovat DPH' form checkbox, and the Settings permission-matrix module + per-permission checkboxes. They looked undersized next to the rest of the page. Removing size="small" makes every checkbox the same standard size app-wide.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-06-07 15:26:41 +02:00
parent bf5d38df14
commit c4e71475ce
2 changed files with 0 additions and 4 deletions

View File

@@ -1277,7 +1277,6 @@ export default function Settings() {
}}
>
<Checkbox
size="small"
checked={allChecked}
indeterminate={someChecked && !allChecked}
onChange={() => toggleModulePermissions(module)}
@@ -1308,7 +1307,6 @@ export default function Settings() {
}}
>
<Checkbox
size="small"
checked={form.permissions.includes(perm.name)}
onChange={() => togglePermission(perm.name)}
disabled={disabled}