修改立体模式下文字偏移范围

This commit is contained in:
zh
2025-08-20 15:19:19 +08:00
parent 56ad8ae7a0
commit dd7af5aa4d

View File

@ -190,7 +190,7 @@ function html(that) {
<div class="col" style="margin: 0 10px;flex: 0 0 100px;">
<span class="label">x</span>
<div class="input-number input-number-unit-2">
<input class="input label-offset-x" type="number" title="" min="0" max="999" step="1">
<input class="input label-offset-x" type="number" title="" min="-999" max="999" step="1">
<span class="unit">px</span>
<span class="arrow"></span>
</div>
@ -198,7 +198,7 @@ function html(that) {
<div class="col" style="margin: 0 10px;flex: 0 0 100px;">
<span class="label">y</span>
<div class="input-number input-number-unit-2">
<input class="input label-offset-y" type="number" title="" min="0" max="999" step="1">
<input class="input label-offset-y" type="number" title="" min="-999" max="999" step="1">
<span class="unit">px</span>
<span class="arrow"></span>
</div>