diff --git a/templates/z_comps/boton_chat.html b/templates/z_comps/boton_chat.html index 25942a0..eedec72 100644 --- a/templates/z_comps/boton_chat.html +++ b/templates/z_comps/boton_chat.html @@ -8,10 +8,9 @@ display: flex; justify-content: center; align-items: center; - cursor: move; - user-select: none; - z-index: 1; - /* z-index: 1000; */ + cursor: move; /* Indica que es arrastrable */ + user-select: none; /* Evita selección de texto al arrastrar */ + z-index: 1000; /* Asegura que esté por encima de otros elementos */ transition: background-color 0.3s, left 0.3s ease, @@ -20,11 +19,11 @@ } .floating-btn:active { - cursor: grabbing; + cursor: grabbing; /* Cambia el cursor mientras se arrastra */ } - +
+ +