Skip to content

Commit

Permalink
added z-index so dropdown appears on top of illustrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Barukimang committed Jan 9, 2024
1 parent a686d94 commit 948ac79
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/@aragon/ods-old/components/dropdown/dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,10 @@ 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-index: 50;
`;

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

0 comments on commit 948ac79

Please sign in to comment.