This commit is contained in:
Henry Jameson 2018-12-02 15:10:18 +03:00
parent dd4deae66e
commit fad19c3c2f

View file

@ -119,7 +119,7 @@ const getCssShadowFilter = (input) => {
return input
// drop-shadow doesn't support inset or spread
.filter((shad) => console.log(shad) || !shad.inset && Number(shad.spread) === 0)
.filter((shad) => !shad.inset && Number(shad.spread) === 0)
.map((shad) => [
shad.x,
shad.y,