feat: increase sidebar hitbox
All checks were successful
TrafficCue CI / check (push) Successful in 57s
TrafficCue CI / build (push) Successful in 1m44s
TrafficCue CI / build-android (push) Successful in 20m20s

This commit is contained in:
2025-09-17 12:21:20 +02:00
parent 8d3546d0a8
commit 4fcbd3cf13

View File

@ -174,9 +174,9 @@
>
{#if mobileView}
<div
style="position: absolute; top: 0; left: 0; right: 0; height: 20px; touch-action: none; cursor: grab;"
role="button"
id="grabber"
style="height: 10px; cursor: grab; display: flex; justify-content: center; align-items: center; touch-action: none;"
ontouchstart={(e) => {
isDragging = true;
startY = e.touches[0].clientY;
@ -201,6 +201,9 @@
if (!isDragging) return;
isDragging = false;
}}
></div>
<div
style="height: 10px; display: flex; justify-content: center; align-items: center;"
>
<div
style="height: 8px; background-color: #acacac; width: 40%; border-radius: 15px;"