general-library-union 2.5.83 → 2.5.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -599,26 +599,27 @@ color: var(--color-700);
|
|
|
599
599
|
color: #fff;
|
|
600
600
|
}
|
|
601
601
|
|
|
602
|
-
|
|
603
602
|
/* Definición de la animación de escala */
|
|
604
603
|
@keyframes scaleUp {
|
|
605
604
|
from {
|
|
606
605
|
transform: scale(0.8); /* Tamaño inicial */
|
|
606
|
+
opacity: 0.7; /* Opcional: ajusta la opacidad para mayor suavidad */
|
|
607
607
|
}
|
|
608
608
|
to {
|
|
609
609
|
transform: scale(1); /* Tamaño final */
|
|
610
|
+
opacity: 1; /* Opcional: ajusta la opacidad para mayor suavidad */
|
|
610
611
|
}
|
|
611
612
|
}
|
|
612
613
|
|
|
613
614
|
/* Aplicación de la animación al componente p-inputSwitch */
|
|
614
|
-
.
|
|
615
|
+
.p-inputswitch {
|
|
615
616
|
display: inline-block; /* Asegúrate de que el contenedor permite el cambio de tamaño */
|
|
616
|
-
animation: scaleUp 0.
|
|
617
|
+
animation: scaleUp 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Ajusta duración y función de tiempo */
|
|
617
618
|
}
|
|
618
619
|
|
|
619
|
-
/*
|
|
620
|
-
.
|
|
621
|
-
animation: scaleUp 0.
|
|
620
|
+
/* Aplicación de animación en el estado activado del switch */
|
|
621
|
+
.p-inputswitch.p-inputswitch-checked {
|
|
622
|
+
animation: scaleUp 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
|
|
622
623
|
}
|
|
623
624
|
|
|
624
625
|
/******************************************************************************
|