Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Anne Staff committed Feb 17, 2024
1 parent 237ded4 commit 7df8baf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/GenomesTable/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const Checkbox: FC<CheckboxProps> = ({onChange, checked, label}) => {
return (
<>
<div className="flex cursor-pointer">
<input type="checkbox" className="w-6 mr-2" id={label} checked={checked} onChange={onValueChange}/>
<input type="checkbox" className="w-6 mr-2 cursor-pointer" id={label} checked={checked} onChange={onValueChange}/>
<label className="text-center cursor-pointer" htmlFor={label}>{label}</label>
</div>
</>
Expand Down

0 comments on commit 7df8baf

Please sign in to comment.