Skip to content

Commit

Permalink
fix: checkbox is getting squeezed if label is long
Browse files Browse the repository at this point in the history
(cherry picked from commit efd82c4)
  • Loading branch information
shariquerik authored and mergify[bot] committed Feb 14, 2023
1 parent 7887388 commit 7992f28
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
</div>
<div class="checkbox">
<label>
<input type="checkbox"
data-fieldname="{{ f.fieldname }}"
{{ selected ? "checked" : "" }}>
{{ __(f.label) }}
<span class="input-area">
<input type="checkbox" data-fieldname="{{ f.fieldname }}" {{ selected ? "checked" : "" }}>
</span>
<span class="label-area">{{ __(f.label) }}</span>
</label>
</div>
</div>
Expand Down

0 comments on commit 7992f28

Please sign in to comment.