Skip to content

Commit

Permalink
fix(frontend/checkbox): adjust label font size to match other form el…
Browse files Browse the repository at this point in the history
…ements (#545)
  • Loading branch information
c0rydoras authored Dec 9, 2024
1 parent 9a5f967 commit b0c2cfe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/app/components/checkbox.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
indeterminate={{eq @checked null}}
{{on "change" (pick "target.checked" (optional @onChange))}}
/>
<label for={{this.checkboxElementId}} title={{@title}}>
<label
for={{this.checkboxElementId}}
title={{@title}}
class="text-sm xl:text-base"
>
{{#if (has-block)}}
{{yield}}
{{else}}
Expand Down

0 comments on commit b0c2cfe

Please sign in to comment.