Ajuste Logout btn en UI v3"
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 2m0s

This commit is contained in:
Leandro Hernan Rojas 2025-02-01 14:45:01 -03:00
parent e32cf49a85
commit e5df64fc32

View File

@ -8,18 +8,11 @@
cursor: pointer; cursor: pointer;
} */ } */
.btn-logout { .btn-logout {
text-decoration: none !important;
background-color: rgb(39, 54, 97); /* Azul oscuro (igual al fondo) */ background-color: rgb(39, 54, 97); /* Azul oscuro (igual al fondo) */
color: white; color: white;
padding: 8px 16px; padding: 8px 8px 8px 8px;
border: 2px solid rgba(255, 255, 255, 0.2); /* Borde sutil */ border: 2px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
border-radius: 10px; border-radius: 5px;
cursor: pointer; cursor: pointer;
font-family: Arial, sans-serif;
font-size: 14px;
transition: all 0.3s ease;
}
.btn-logout:hover {
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 */
} }