diff --git a/front/src/components/audio/VolumeControl.vue b/front/src/components/audio/VolumeControl.vue index c4e0adf59..04e9d8ae9 100644 --- a/front/src/components/audio/VolumeControl.vue +++ b/front/src/components/audio/VolumeControl.vue @@ -25,6 +25,10 @@ const handleLeave = () => { stop() start() } + +const scroll = (event: WheelEvent) => { + volume.value += -Math.sign(event.deltaY) * 0.05 +}