Browse Source

fix: #1423 should not scroll right when dragging side bar items

Yidadaa 1 year ago
parent
commit
6da3aab046
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/components/home.module.scss

+ 2 - 2
app/components/home.module.scss

@@ -186,7 +186,7 @@
 .chat-item-delete {
   position: absolute;
   top: 10px;
-  right: -20px;
+  right: 0;
   transition: all ease 0.3s;
   opacity: 0;
   cursor: pointer;
@@ -194,7 +194,7 @@
 
 .chat-item:hover > .chat-item-delete {
   opacity: 0.5;
-  right: 10px;
+  transform: translateX(-10px);
 }
 
 .chat-item:hover > .chat-item-delete:hover {