fix(KB-239): resolve dropdown z-index stacking issue

- Increase dropdown z-index from 50 to 500 in dashboard styles
- Fixes dropdown being obscured by overlapping elements with higher z-index
- Ensures dropdown menu renders above all page content
This commit is contained in:
gsxdsm
2026-03-30 19:16:36 -07:00
parent 6e5befb73d
commit 4215d9c81f

View File

@@ -2314,7 +2314,7 @@ body {
display: flex;
flex-direction: column;
gap: 10px;
z-index: 50;
z-index: 500;
box-shadow: var(--shadow);
}