From 6da3aab046d85825cf195bf2074465471f7fc481 Mon Sep 17 00:00:00 2001 From: Yidadaa Date: Sun, 14 May 2023 02:21:35 +0800 Subject: [PATCH] fix: #1423 should not scroll right when dragging side bar items --- app/components/home.module.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/home.module.scss b/app/components/home.module.scss index 247d70b9..1ce95af8 100644 --- a/app/components/home.module.scss +++ b/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 {