fix: corregir overflow del dropdown en el header
- Cambiar overflow: hidden a overflow: visible en app-header - Aumentar z-index del dropdown de 1000 a 9999 - Permitir que el dropdown se dibuje por encima de todos los elementos
This commit is contained in:
@@ -94,7 +94,7 @@ const hasActiveTrack = computed(() => !!props.currentTrack)
|
|||||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: visible;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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: 1000;
|
z-index: 9999;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
|
|||||||
Reference in New Issue
Block a user