Skip to content

Commit d237710

Browse files
committed
fix: set slider limit to 100
...since maximum value supported is 100 in visuals, the slider should not go above that, as that enforces duplicat values
1 parent 2201be4 commit d237710

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ <h1 class="h1" style="color: #183024;">Rotate Your Phone </h1>
3737
<input
3838
type="range"
3939
min="10"
40-
max="200"
40+
max="100"
4141
value="20"
4242
step="10"
4343
name="size"

0 commit comments

Comments
 (0)