From c6b43596120d7189ad33f5c2f678d0f3b270502c Mon Sep 17 00:00:00 2001 From: alexsparkes Date: Wed, 28 Feb 2024 12:57:47 +0000 Subject: [PATCH] fix(order): Hover effect on sortable items --- .../scss/settings/modules/tabs/_order.scss | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/components/Elements/MainModal/scss/settings/modules/tabs/_order.scss b/src/components/Elements/MainModal/scss/settings/modules/tabs/_order.scss index 3db78f97..290349d0 100644 --- a/src/components/Elements/MainModal/scss/settings/modules/tabs/_order.scss +++ b/src/components/Elements/MainModal/scss/settings/modules/tabs/_order.scss @@ -1,14 +1,16 @@ @import 'scss/variables'; .sortableItem { + transition: 0.5s; + cursor: move; + width: 200px; + z-index: 999 !important; + padding: 15px; + margin-bottom: 10px; + font-size: 1.325rem; + @include themed { - padding: 15px; - margin-bottom: 10px; - font-size: 1.325rem; color: t($color) !important; - cursor: move; - width: 200px; - z-index: 999 !important; display: flex; justify-content: space-between; align-items: center;