Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
relative positioning for checkbox (#10953)
Browse files Browse the repository at this point in the history
  • Loading branch information
achen5671 authored Aug 15, 2024
1 parent 374551b commit d697108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/primitives/tailwind/Checkbox/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const Checkbox = ({ className, containerClassName, label, value, onChange, disab
}

return (
<div className={twMerge('flex cursor-pointer items-end', containerClassName)}>
<div className={twMerge('relative flex cursor-pointer items-end', containerClassName)}>
<input
type="checkbox"
checked={value}
Expand Down

0 comments on commit d697108

Please sign in to comment.