Ajuste Logout btn en UI v2
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m27s

This commit is contained in:
Leandro Hernan Rojas 2025-02-01 14:35:13 -03:00
parent 08a43455a6
commit e32cf49a85

View File

@ -8,19 +8,18 @@
cursor: pointer; cursor: pointer;
} */ } */
.btn-logout { .btn-logout {
background-color: rgb(0, 123, 255); /* Azul brillante */ background-color: rgb(39, 54, 97); /* Azul oscuro (igual al fondo) */
color: white; color: white;
padding: 8px 16px; padding: 8px 16px;
border: none; border: 2px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
border-radius: 10px; border-radius: 10px;
cursor: pointer; cursor: pointer;
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
font-size: 14px; font-size: 14px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra ligera */
transition: all 0.3s ease; transition: all 0.3s ease;
} }
.btn-logout:hover { .btn-logout:hover {
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Sombra más pronunciada */ border-color: rgba(255, 255, 255, 0.5); /* Borde más visible al hacer hover */
transform: translateY(-2px); /* Efecto de levantar */ background-color: rgba(255, 255, 255, 0.1); /* Fondo ligeramente más claro */
} }