mirror of
https://github.com/penpot/penpot.git
synced 2025-08-06 08:18:26 +02:00
🐛 Fix problem with numeric inputs
This commit is contained in:
parent
512e9b2070
commit
4c683bb10c
3 changed files with 30 additions and 4 deletions
|
@ -71,8 +71,8 @@
|
|||
[:rect.margin-rect
|
||||
{:x (:x rect-data)
|
||||
:y (:y rect-data)
|
||||
:width (:width rect-data)
|
||||
:height (:height rect-data)
|
||||
:width (max 0 (:width rect-data))
|
||||
:height (max 0 (:height rect-data))
|
||||
:on-pointer-enter on-pointer-enter
|
||||
:on-pointer-leave on-pointer-leave
|
||||
:on-pointer-down on-pointer-down
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue