From 0de02bea68b79dc0f8ea869ead2a106be9b8347a Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Tue, 2 Nov 2021 06:16:19 -0700 Subject: [PATCH] fix: slider grabbing cursor --- scss/components/_slider.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scss/components/_slider.scss b/scss/components/_slider.scss index 455af88dd..142f4a5b3 100755 --- a/scss/components/_slider.scss +++ b/scss/components/_slider.scss @@ -54,6 +54,7 @@ $slider-transition: all 0.2s ease-in-out !default; @include vertical-center; left: 0; z-index: 1; + cursor: grab; display: inline-block; width: $slider-handle-width; @@ -70,6 +71,7 @@ $slider-transition: all 0.2s ease-in-out !default; &.is-dragging { transition: all 0s linear; + cursor: grabbing; } } -- 2.47.2