mirror of
https://github.com/penpot/penpot.git
synced 2025-04-16 00:41:25 -05:00
🐛 Fix opacity valid values (#5820)
This commit is contained in:
parent
a3a757f842
commit
9660307f00
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue