fix(ui): correct range slider styling in chrome (#3299)

pull/3302/head
Ryan Cohen 1 year ago committed by GitHub
parent 3e43586acc
commit d954328911
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;

Loading…
Cancel
Save