Skip to content

Commit

Permalink
Merge pull request #146 from abusix/pla-1332-remove-list-style-type-f…
Browse files Browse the repository at this point in the history
…rom-listbox-component

fix(components): remove list-style-type from listbox options component
  • Loading branch information
mnlfischer authored Aug 14, 2024
2 parents dc626b1 + 4390cf8 commit d99cc94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/form-field/listbox/listbox-options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface ListboxOptionsProps {

export const ListboxOptions = ({ children }: ListboxOptionsProps) => {
return (
<HeadlessUiListboxOptions className="absolute mt-1 max-h-60 w-full overflow-auto rounded-md border border-neutral-300 bg-neutral-0 shadow-md outline-none ring-0">
<HeadlessUiListboxOptions className="absolute mt-1 max-h-60 w-full list-none overflow-auto rounded-md border border-neutral-300 bg-neutral-0 shadow-md outline-none ring-0">
{children}
</HeadlessUiListboxOptions>
);
Expand Down

0 comments on commit d99cc94

Please sign in to comment.