We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13c12b1 commit fe574e3Copy full SHA for fe574e3
src/browser/components/RightSidebar/ThresholdSlider.tsx
@@ -109,7 +109,14 @@ export const HorizontalThresholdSlider: React.FC<HorizontalThresholdSliderProps>
109
return (
110
<div
111
ref={containerRef}
112
- className="absolute inset-0 z-10 cursor-ew-resize"
+ className="absolute z-10 cursor-ew-resize"
113
+ style={{
114
+ // Extend hit area beyond the thin bar for easier clicking
115
+ left: 0,
116
+ right: 0,
117
+ top: -8,
118
+ bottom: -8,
119
+ }}
120
onMouseDown={handleMouseDown}
121
title={title}
122
>
0 commit comments