mirror of
https://github.com/penpot/penpot.git
synced 2026-04-28 20:58:06 +00:00
🐛 Fix opacity valid values (#5820)
This commit is contained in:
parent
a3a757f842
commit
9660307f00
@ -67,7 +67,7 @@
|
||||
[value has-references?]
|
||||
|
||||
(let [parsed-value (wtt/parse-token-value value)
|
||||
out-of-scope (< 100 (:value parsed-value))
|
||||
out-of-scope (not (<= 0 (:value parsed-value) 1))
|
||||
references (seq (ctob/find-token-value-references value))]
|
||||
(cond
|
||||
(and parsed-value (not out-of-scope))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user