Skip to content

Commit

Permalink
fix: APP-2519 - Background overlays 'All Links' Modal (#1191)
Browse files Browse the repository at this point in the history
* added z-index so dropdown appears on top of illustrations

* re-adding as string

* add z-index through tailwind css class instead
  • Loading branch information
Barukimang authored Jan 9, 2024
1 parent a686d94 commit 248c48f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/@aragon/ods-old/components/dropdown/dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const Dropdown: React.FC<DropdownProps> = ({
};

const StyledContent = styled(DropdownMenu.Content).attrs({
className: 'bg-neutral-0 rounded-xl p-2 shadow-neutral-xl' as string,
className: 'bg-neutral-0 rounded-xl p-2 shadow-neutral-xl z-50' as string,
})``;

const StyledItem = styled(DropdownMenu.Item).attrs({
Expand Down

0 comments on commit 248c48f

Please sign in to comment.