Skip to content

Commit

Permalink
Refactor checkbox styling in create-text-box.js
Browse files Browse the repository at this point in the history
  • Loading branch information
georapbox committed Jan 15, 2024
1 parent 69bb28d commit f932b22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/create-text-box.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ export const createTextBox = (index, data = {}) => {
<div class="row g-2">
<div class="col-lg-12">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="allCapsCheckbox_${index}" data-input="allCaps">
<label class="custom-control-label" for="allCapsCheckbox_${index}">ALL CAPS</label>
<div class="form-check">
<input type="checkbox" class="form-check-input" id="allCapsCheckbox_${index}" data-input="allCaps">
<label class="form-check-label" for="allCapsCheckbox_${index}">ALL CAPS</label>
</div>
</div>
</div>
Expand Down

0 comments on commit f932b22

Please sign in to comment.