Skip to content

Commit ed93a87

Browse files
UI fix for dropdown (#13)
1 parent bf6dd52 commit ed93a87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/Dropdown2.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ export default function Dropdown2(props: DropdownProps) {
231231
}}>
232232
{props.hasCheckboxes && <input checked={selectedCheckboxes[index].checked} name="option" type="checkbox" className="mr-3 cursor-pointer"
233233
onChange={(e) => handleSelectedCheckboxes(option, index, e)} />}
234-
{props.hasCheckboxesThreeStates && <div className="h-4 w-4 border-gray-300 mr-3 border rounded hover:bg-gray-200"
234+
{props.hasCheckboxesThreeStates && <div className="h-4 w-4 border-gray-300 mr-3 border rounded hover:bg-gray-200 min-w-4"
235235
style={{ backgroundColor: getActiveNegateGroupColor(props.options[index]), borderColor: getActiveNegateGroupColor(props.options[index]) }}>
236236
</div>}
237237
{props.iconsArray && props.iconsArray[index] && <span className='mx-2 text-gray-700'>

0 commit comments

Comments
 (0)