From 72850ce20b00601a8118a48cefce5e570f55607d Mon Sep 17 00:00:00 2001 From: refact0r <34758569+refact0r@users.noreply.github.com> Date: Sun, 22 Aug 2021 03:06:46 -0700 Subject: [PATCH] fix slider thumbs on firefox (#1747) --- src/sass/style.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sass/style.scss b/src/sass/style.scss index 5e3eecf88..3fb293712 100644 --- a/src/sass/style.scss +++ b/src/sass/style.scss @@ -52,9 +52,11 @@ input[type="range"] { width: 100%; height: 1rem; border-radius: var(--roundness); - &::-webkit-slider-thumb { + &::-webkit-slider-thumb, + &::-moz-range-thumb { -webkit-appearance: none; padding: 0; + border: none; width: 2rem; height: 1rem; border-radius: var(--roundness);