This commit is contained in:
2024-10-02 18:37:48 +02:00
parent 6ed56c038b
commit 9f2a51b911
4 changed files with 301 additions and 215 deletions

View File

@@ -17,7 +17,7 @@
}
const maxWidth = ref( window.innerWidth ); // TODO: Update to reflect slider width
const sliderOffset = -11;
const sliderOffset = -10;
const sliderFillPosLeft = ref( sliderOffset ); // Offset from left edge
const sliderFillPosRight = ref( maxWidth.value ); // Offset from right edge
const sliderStops: Ref<SliderStop[]> = ref( [] );
@@ -143,7 +143,7 @@
border-radius: 15px;
position: absolute;
z-index: 5;
top: -7px;
top: -5px;
transition: left 0.5s;
}