Skip to content

Commit

Permalink
Fix "cursor: !pointer" regression
Browse files Browse the repository at this point in the history
  • Loading branch information
ljwagerfield committed Sep 20, 2023
1 parent de14c74 commit 5fb09f8
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,12 @@
width: 100%;
height: 100%;
opacity: 0;

// This is required to enable 'pointer: cursor' behaviour. Without this, the cursor behaves erratically across
// different environments it seems, with a standard 'arrow' pointer appearing most times, instead of the 'finger'
// pointer. Specifically, we have seen this occur on restorePhotos.io.
// The <label for="xyz"> method should be sufficient for diverting clicks to the button.
z-index: -1;
}
}
&--upload {
Expand Down

0 comments on commit 5fb09f8

Please sign in to comment.