From 4ca34e04368420cf97626d1b9803f9b7d647190e Mon Sep 17 00:00:00 2001 From: Yidadaa Date: Wed, 24 May 2023 23:21:18 +0800 Subject: [PATCH] fix: #1711 input range style in mobile screen --- app/components/input-range.module.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/components/input-range.module.scss b/app/components/input-range.module.scss index 5a555a45..e9741052 100644 --- a/app/components/input-range.module.scss +++ b/app/components/input-range.module.scss @@ -4,4 +4,9 @@ padding: 5px 15px 5px 10px; font-size: 12px; display: flex; + max-width: 40%; + + input[type="range"] { + max-width: calc(100% - 50px); + } }