🐛 Fix text inputs to allow negative values

This commit is contained in:
eva 2022-01-04 12:03:04 +01:00 committed by Alonso Torres
parent 6afc734e91
commit 533cac7881
2 changed files with 3 additions and 2 deletions

View file

@ -362,7 +362,7 @@
[:input.input-text
{:type "number"
:step "0.1"
:min "0"
:min "-200"
:max "200"
:value (attr->string line-height)
:placeholder (tr "settings.multiple")
@ -376,7 +376,7 @@
[:input.input-text
{:type "number"
:step "0.1"
:min "0"
:min "-200"
:max "200"
:value (attr->string letter-spacing)
:placeholder (tr "settings.multiple")