Skip to content

Commit

Permalink
Fix: fix accessibility issues on checkboxes
Browse files Browse the repository at this point in the history
Signed-off-by: Louis Kirkham <[email protected]>
  • Loading branch information
TheDancingClown committed Nov 15, 2024
1 parent 209716b commit 15be1b1
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions app/assets/stylesheets/admin/forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,13 @@ input.form-control, select.form-control,
}

.section-contact-preferences .selectable {
cursor: auto;

input[type="checkbox"] {
margin-top: 10px;
label, input {
cursor: pointer;
}
input {
position: inherit;
}
label {
display: inline;
}
}

0 comments on commit 15be1b1

Please sign in to comment.