1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:07:45 +00:00

LibWeb: Fix bug where input range thumb is not centered

This commit is contained in:
Bastiaan van der Plaat 2024-01-18 20:14:39 +01:00 committed by Andreas Kling
parent 2440a2f83f
commit 5ba8a5ba13

View file

@ -85,6 +85,7 @@ input[type=range]::-webkit-slider-thumb {
margin-top: -6px; margin-top: -6px;
width: 16px; width: 16px;
height: 16px; height: 16px;
transform: translateX(-50%);
border-radius: 50%; border-radius: 50%;
background-color: hsl(0, 0%, 96%); background-color: hsl(0, 0%, 96%);
outline: 1px solid rgba(0, 0, 0, 0.5); outline: 1px solid rgba(0, 0, 0, 0.5);