Skip to content

Commit

Permalink
fix(ui): style range thumbs correctly for firefox (#3294)
Browse files Browse the repository at this point in the history
  • Loading branch information
sct committed Jan 29, 2023
1 parent 8942eb8 commit 9d10e6a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/styles/globals.css
Expand Up @@ -452,8 +452,9 @@
@apply hidden;
}

input[type='range']::-webkit-slider-thumb {
@apply rounded-full bg-indigo-500;
input[type='range']::-webkit-slider-thumb,
input[type='range']::-moz-range-thumb {
@apply rounded-full border-0 bg-indigo-500;
pointer-events: all;
width: 16px;
height: 16px;
Expand Down

0 comments on commit 9d10e6a

Please sign in to comment.