diff --git a/nuxt4/app/components/cata/BotonNubeCaustica.vue b/nuxt4/app/components/cata/BotonNubeCaustica.vue index e422fb4..8fa7b52 100644 --- a/nuxt4/app/components/cata/BotonNubeCaustica.vue +++ b/nuxt4/app/components/cata/BotonNubeCaustica.vue @@ -112,16 +112,6 @@ fill="url(#caustic-pattern)" class="caustic-layer" /> - - - - - @@ -192,23 +182,6 @@ defineEmits<{ } } -/* Animación del icono */ -.icono-rayo { - animation: sparkle 2s ease-in-out infinite; - transform-origin: center; -} - -@keyframes sparkle { - 0%, 100% { - opacity: 0.8; - transform: scale(1) rotate(0deg); - } - 50% { - opacity: 1; - transform: scale(1.1) rotate(5deg); - } -} - .boton-texto { font-size: 0.625rem; font-weight: 600; diff --git a/nuxt4/app/components/cata/FormularioMuestra.vue b/nuxt4/app/components/cata/FormularioMuestra.vue index 3fe7f06..d2d5a42 100644 --- a/nuxt4/app/components/cata/FormularioMuestra.vue +++ b/nuxt4/app/components/cata/FormularioMuestra.vue @@ -70,9 +70,15 @@
- +
- + + +
@@ -806,13 +812,6 @@
- - - diff --git a/nuxt4/app/components/cata/ModalAsignacionRapida.vue b/nuxt4/app/components/cata/ModalAsignacionRapida.vue index ef76efe..a281017 100644 --- a/nuxt4/app/components/cata/ModalAsignacionRapida.vue +++ b/nuxt4/app/components/cata/ModalAsignacionRapida.vue @@ -1,40 +1,36 @@ @@ -134,13 +136,13 @@ const emit = defineEmits<{ // Categorías disponibles const categoriasDisponibles = [ - { key: 'fragancia', label: 'Fragancia', icon: 'i-lucide-wind', color: '#8B7AB8' }, - { key: 'aroma', label: 'Aroma', icon: 'i-lucide-nose', color: '#26A69A' }, - { key: 'sabor', label: 'Sabor', icon: 'i-lucide-ice-cream-cone', color: '#E53935' }, + { key: 'fragancia', label: 'Fragancia', icon: 'i-lucide-flower-2', color: '#8B7AB8' }, + { key: 'aroma', label: 'Aroma', icon: 'i-lucide-wind', color: '#26A69A' }, + { key: 'sabor', label: 'Sabor', icon: 'i-lucide-candy', color: '#E53935' }, { key: 'saborResidual', label: 'Sabor Residual', icon: 'i-lucide-timer', color: '#F57C00' }, - { key: 'acidez', label: 'Acidez', icon: 'i-lucide-zap', color: '#FDD835' }, - { key: 'dulzor', label: 'Dulzor', icon: 'i-lucide-candy', color: '#EC407A' }, - { key: 'sensacionBoca', label: 'Sensación en Boca', icon: 'i-lucide-smile', color: '#1E88E5' }, + { key: 'acidez', label: 'Acidez', icon: 'i-lucide-citrus', color: '#FDD835' }, + { key: 'dulzor', label: 'Dulzor', icon: 'i-lucide-cookie', color: '#EC407A' }, + { key: 'sensacionBoca', label: 'Sensación en Boca', icon: 'i-lucide-droplets', color: '#1E88E5' }, { key: 'impresionGlobal', label: 'Impresión Global', icon: 'i-lucide-star', color: '#00ACC1' }, ] @@ -245,3 +247,15 @@ const cerrar = () => { }, 300) } + +