From 9d10e6a88c0996671f1d9d20792e1930dbc82329 Mon Sep 17 00:00:00 2001 From: Ryan Cohen Date: Sun, 29 Jan 2023 13:27:33 +0900 Subject: [PATCH] fix(ui): style range thumbs correctly for firefox (#3294) --- src/styles/globals.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/styles/globals.css b/src/styles/globals.css index 7598cb9b1d..e9bb6aa77e 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -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;