Skip to content

Commit

Permalink
Allow negative shadow offsets in demo
Browse files Browse the repository at this point in the history
  • Loading branch information
bhj committed Feb 15, 2021
1 parent dd15f10 commit 152f53f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
shadowBlur
</label><br />
<label>
<input type="range" id="shadowOffsetX" min="0" max="32" value="0" />
<input type="range" id="shadowOffsetX" min="-32" max="32" value="0" />
shadowOffsetX
</label><br />
<label>
<input type="range" id="shadowOffsetY" min="0" max="32" value="0" />
<input type="range" id="shadowOffsetY" min="-32" max="32" value="0" />
shadowOffsetY
</label>
</fieldset>
Expand Down

0 comments on commit 152f53f

Please sign in to comment.