From 5ba8a5ba13d67e76198089db2d948e9d379a1d35 Mon Sep 17 00:00:00 2001 From: Bastiaan van der Plaat Date: Thu, 18 Jan 2024 20:14:39 +0100 Subject: [PATCH] LibWeb: Fix bug where input range thumb is not centered --- Userland/Libraries/LibWeb/CSS/Default.css | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index f61d198adb..11c395cac1 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -85,6 +85,7 @@ input[type=range]::-webkit-slider-thumb { margin-top: -6px; width: 16px; height: 16px; + transform: translateX(-50%); border-radius: 50%; background-color: hsl(0, 0%, 96%); outline: 1px solid rgba(0, 0, 0, 0.5);