Skip to content

Commit cb9eb91

Browse files
committed
Fix dropdown hiding under buttons
1 parent 34a46a3 commit cb9eb91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/scripts/components/elements/DropdownMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class DropdownMenu extends React.PureComponent<Props, State> {
9494
e.stopPropagation();
9595
this.setState({ visible: false });
9696
}}
97-
css={tw`absolute bg-white p-2 rounded border border-neutral-700 shadow-lg text-neutral-500 min-w-48`}
97+
css={tw`absolute bg-white p-2 rounded border border-neutral-700 shadow-lg text-neutral-500 min-w-48 z-50`}
9898
>
9999
{this.props.children}
100100
</div>

0 commit comments

Comments
 (0)