Fix dropdown z-index layering issue
Some checks failed
Lint and Build / build (pull_request) Failing after 1m23s
Some checks failed
Lint and Build / build (pull_request) Failing after 1m23s
Increase dropdown z-index to z-[9999] to ensure it appears above glass morphism containers and other stacked elements. Fixes issue where team selection dropdown appears behind existing streams box. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
f25fbcc720
commit
5bc4d30102
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ export default function Dropdown({
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
{(controlledIsOpen ?? isOpen) && (
|
{(controlledIsOpen ?? isOpen) && (
|
||||||
<div className="absolute z-50 w-full dropdown-menu">
|
<div className="absolute z-[9999] w-full dropdown-menu">
|
||||||
{options.length === 0 ? (
|
{options.length === 0 ? (
|
||||||
<div className="dropdown-item text-center">
|
<div className="dropdown-item text-center">
|
||||||
No streams available
|
No streams available
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue