feat: mejorar el estilo del elemento del menú asistente con ajustes de diseño y color

This commit is contained in:
2026-08-22 12:56:25 -03:00
parent f00e258819
commit ee9da60b3b
@@ -136,7 +136,10 @@
.assistantMenuItem { .assistantMenuItem {
display: flex; display: flex;
align-items: center; align-items: center;
flex: 0 0 auto;
gap: 15px; gap: 15px;
min-height: 59px;
box-sizing: border-box;
padding: 14px 20px; padding: 14px 20px;
margin: 10px 0; margin: 10px 0;
border-radius: 12px; border-radius: 12px;
@@ -157,9 +160,14 @@
filter: brightness(0) invert(1); /* makes the black SVG white */ filter: brightness(0) invert(1); /* makes the black SVG white */
} }
.assistantMenuItem span {
color: inherit;
}
.assistantMenuItem:hover { .assistantMenuItem:hover {
transform: scale(1.02); transform: scale(1.02);
animation: none; animation: none;
color: white;
box-shadow: 0 8px 25px rgba(255, 65, 108, 0.5); box-shadow: 0 8px 25px rgba(255, 65, 108, 0.5);
} }