Limit brightness and contrast, move sliders to high z to avoid collisions

This commit is contained in:
jaknapper 2025-10-16 12:45:14 +01:00
parent fb3658c933
commit 19913b8f48

View file

@ -98,8 +98,8 @@
Brightness
<input
type="range"
min="0"
max="2"
min="0.2"
max="1.8"
step="0.01"
v-model.number="brightness"
@input="updateViewerFilter"
@ -109,8 +109,8 @@
Contrast
<input
type="range"
min="0"
max="2"
min="0.2"
max="1.8"
step="0.01"
v-model.number="contrast"
@input="updateViewerFilter"
@ -344,4 +344,10 @@ export default {
margin-bottom: 30px;
}
input[type="range"] {
pointer-events: auto;
z-index: 1001;
}
</style>