Feat: Aumentar blur del overlay en modal de asignación rápida
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m7s
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m7s
CAMBIOS: 1. Blur aumentado de 4px a 10px: - Antes: backdrop-filter: blur(4px) - Ahora: backdrop-filter: blur(10px) - Efecto más agresivo en el fondo 2. Opacidad aumentada de 0.85 a 0.90: - Fondo ligeramente más oscuro - Mejor enfoque en el modal 3. Compatibilidad mejorada: - Agregado -webkit-backdrop-filter para WebKit - Mejor soporte en Safari y navegadores basados en Chromium RESULTADO: El modal ahora tiene un efecto de blur medianamente agresivo que ayuda a enfocar la atención en el contenido del modal.
This commit is contained in:
@@ -390,8 +390,9 @@ const cerrar = () => {
|
|||||||
<style>
|
<style>
|
||||||
.modal-overlay {
|
.modal-overlay {
|
||||||
background-color: var(--cata-bg) !important;
|
background-color: var(--cata-bg) !important;
|
||||||
opacity: 0.85 !important;
|
opacity: 0.90 !important;
|
||||||
backdrop-filter: blur(4px);
|
backdrop-filter: blur(10px);
|
||||||
|
-webkit-backdrop-filter: blur(10px);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user