fix: aumentar z-index del header y dropdown
All checks were successful
build-and-deploy / build (push) Successful in 23s
build-and-deploy / deploy (push) Successful in 3s

- Agregar z-index: 100 al app-header
- Aumentar z-index del dropdown a 10001 (mayor que AuthIndicator)
- Asegurar que el dropdown se dibuje por encima de todos los elementos
This commit is contained in:
2025-10-14 01:36:34 -06:00
parent c082d2d27a
commit aa34a98737
2 changed files with 2 additions and 1 deletions

View File

@@ -96,6 +96,7 @@ const hasActiveTrack = computed(() => !!props.currentTrack)
position: relative; position: relative;
overflow: visible; overflow: visible;
flex-shrink: 0; flex-shrink: 0;
z-index: 100;
} }
.app-header::before { .app-header::before {

View File

@@ -94,7 +94,7 @@ onUnmounted(() => {
border-radius: 16px; border-radius: 16px;
padding: 12px; padding: 12px;
box-shadow: var(--shadow-glass), 0 8px 32px rgba(0, 0, 0, 0.2); box-shadow: var(--shadow-glass), 0 8px 32px rgba(0, 0, 0, 0.2);
z-index: 9999; z-index: 10001;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 8px; gap: 8px;