make chapter indicator 1px wide

This commit is contained in:
nieve 2024-06-27 12:43:19 -04:00
parent 3aff18a7a9
commit 0e13fe3909

View file

@ -685,8 +685,8 @@ export default {
}
array.push(`transparent ${start}%`);
array.push(`black ${start}%`);
array.push(`black ${start + 0.1}%`);
array.push(`transparent ${start + 0.1}%`);
array.push(`black calc(${start}% + 1px)`);
array.push(`transparent calc(${start}% + 1px)`);
}
seekbar.style.background = `linear-gradient(${array.join(",")})`;