Skip to content

Commit

Permalink
fix: checkbox margin issue (#864)
Browse files Browse the repository at this point in the history
  • Loading branch information
sakksham7 authored Jan 10, 2025
1 parent 2dd3ed3 commit 8f1f2db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/SaveDetailsCheckbox.res
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ let make = (~isChecked, ~setIsChecked) => {
<style> {React.string(css)} </style>
<label className={`container CheckboxInput ${checkedState}`}>
<input type_={`checkbox`} onChange />
<div className={`checkmark CheckboxInput ${checkedState} mt-1`} />
<div className={`checkmark CheckboxInput ${checkedState}`} />
<div className={`CheckboxLabel ${checkBoxLabelState} ml-2 w-11/12 opacity-50 text-xs`}>
{React.string(saveCardCheckboxLabel)}
</div>
Expand Down

0 comments on commit 8f1f2db

Please sign in to comment.