From e32cf49a8558997c6c80118fca2d3b9ef7adf5c2 Mon Sep 17 00:00:00 2001 From: Leandro Hernan Rojas Date: Sat, 1 Feb 2025 14:35:13 -0300 Subject: [PATCH] Ajuste Logout btn en UI v2 --- phronCare.UIBlazor/Shared/LoginView.razor.css | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/phronCare.UIBlazor/Shared/LoginView.razor.css b/phronCare.UIBlazor/Shared/LoginView.razor.css index adcbd6d..2f8ea16 100644 --- a/phronCare.UIBlazor/Shared/LoginView.razor.css +++ b/phronCare.UIBlazor/Shared/LoginView.razor.css @@ -8,19 +8,18 @@ cursor: pointer; } */ .btn-logout { - background-color: rgb(0, 123, 255); /* Azul brillante */ + background-color: rgb(39, 54, 97); /* Azul oscuro (igual al fondo) */ color: white; padding: 8px 16px; - border: none; + border: 2px solid rgba(255, 255, 255, 0.2); /* Borde sutil */ border-radius: 10px; cursor: pointer; font-family: Arial, sans-serif; font-size: 14px; - box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra ligera */ transition: all 0.3s ease; } .btn-logout:hover { - box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Sombra más pronunciada */ - transform: translateY(-2px); /* Efecto de levantar */ + border-color: rgba(255, 255, 255, 0.5); /* Borde más visible al hacer hover */ + background-color: rgba(255, 255, 255, 0.1); /* Fondo ligeramente más claro */ } \ No newline at end of file