From ee9da60b3b836195de151d279ec16037b62f949a Mon Sep 17 00:00:00 2001 From: Horacio Daniel Ros Date: Sat, 22 Aug 2026 12:56:25 -0300 Subject: [PATCH] =?UTF-8?q?feat:=20mejorar=20el=20estilo=20del=20elemento?= =?UTF-8?q?=20del=20men=C3=BA=20asistente=20con=20ajustes=20de=20dise?= =?UTF-8?q?=C3=B1o=20y=20color?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- txclient/src/app/components/UserMenu/UserMenu.module.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/txclient/src/app/components/UserMenu/UserMenu.module.css b/txclient/src/app/components/UserMenu/UserMenu.module.css index e06ec63..6f9bc5b 100644 --- a/txclient/src/app/components/UserMenu/UserMenu.module.css +++ b/txclient/src/app/components/UserMenu/UserMenu.module.css @@ -136,7 +136,10 @@ .assistantMenuItem { display: flex; align-items: center; + flex: 0 0 auto; gap: 15px; + min-height: 59px; + box-sizing: border-box; padding: 14px 20px; margin: 10px 0; border-radius: 12px; @@ -157,9 +160,14 @@ filter: brightness(0) invert(1); /* makes the black SVG white */ } +.assistantMenuItem span { + color: inherit; +} + .assistantMenuItem:hover { transform: scale(1.02); animation: none; + color: white; box-shadow: 0 8px 25px rgba(255, 65, 108, 0.5); }