From bbee41431d51f6d7d7160d9dc4d112b54d13904b Mon Sep 17 00:00:00 2001
From: ysds <fellows3@gmail.com>
Date: Wed, 25 Jul 2018 09:56:03 +0900
Subject: [PATCH] Fix custom range height (#26898)

Fixes #26897
---
 scss/_custom-forms.scss | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss
index 5e1fa19927..d9b62fc374 100644
--- a/scss/_custom-forms.scss
+++ b/scss/_custom-forms.scss
@@ -314,7 +314,8 @@
 
 .custom-range {
   width: 100%;
-  padding-left: 0; // Firefox specific
+  height: calc(#{$custom-range-thumb-height} + #{$custom-range-thumb-focus-box-shadow-width * 2});
+  padding: 0; // Need to reset padding
   background-color: transparent;
   appearance: none;
 
-- 
GitLab