From 205ed3774ebe5014873cad199c4c34c9c23bb168 Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Tue, 22 Dec 2020 16:13:58 +0530 Subject: [PATCH] Removed Image ghosting using css select and drag properties --- styles/main.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/styles/main.css b/styles/main.css index d7289b9..4ccf877 100644 --- a/styles/main.css +++ b/styles/main.css @@ -267,3 +267,13 @@ hr { --background: var(--black); --textColor: var(--lightGrey); } + +/* Remove image ghosting */ + +img{ + user-select: none; + -moz-user-select: none; + -webkit-user-drag: none; + -webkit-user-select: none; + -ms-user-select: none; +} \ No newline at end of file