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

This commit is contained in:
Ryan Cohen
2023-01-29 20:32:25 +09:00
committed by GitHub
parent 3e43586acc
commit d954328911

View File

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