From 9018dcd319c100d3ba2cc90fc0343f454b9501d9 Mon Sep 17 00:00:00 2001 From: Scott Bell Date: Fri, 14 Apr 2023 14:46:36 -0500 Subject: [PATCH] fix pointer events --- src/plugins/imagery/components/Compass/compass.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/imagery/components/Compass/compass.scss b/src/plugins/imagery/components/Compass/compass.scss index 2846efc456..568d82cfaa 100644 --- a/src/plugins/imagery/components/Compass/compass.scss +++ b/src/plugins/imagery/components/Compass/compass.scss @@ -10,11 +10,11 @@ $elemBg: rgba(black, 0.7); } .c-compass { - pointer-events: auto; // This allows the image element to receive a browser-level context click + pointer-events: none; // This allows the image element to receive a browser-level context click position: absolute; left: 0; top: 0; - z-index: 2; + z-index: 4; @include userSelectNone; }