Skip to content

Commit

Permalink
fix(ui): correct range slider styling in chrome (#3299)
Browse files Browse the repository at this point in the history
  • Loading branch information
sct committed Jan 29, 2023
1 parent 3e43586 commit d954328
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/styles/globals.css
Expand Up @@ -452,7 +452,14 @@
@apply hidden;
}

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

input[type='range']::-moz-range-thumb {
@apply rounded-full border-0 bg-indigo-500;
pointer-events: all;
Expand Down

0 comments on commit d954328

Please sign in to comment.