We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While using the shadow-box with Typst Preview, I noticed that the shadow SVG does not render correctly. The original issue can be found here.
SVG:
PDF:
@Enter-tainer figured out that stdDeviation expects a number, e.g., 5 5, and not 5pt 5pt.
stdDeviation
5 5
5pt 5pt
This might be fixed by converting blur.x and blur.y to a float with .pt() when assigning to blur-x and blur-y?!
blur.x
blur.y
.pt()
blur-x
blur-y
// ... let opts = (blur-x: blur.x.pt(), blur-y: blur.y.pt(), radius: radius) // ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While using the shadow-box with Typst Preview, I noticed that the shadow SVG does not render correctly. The original issue can be found here.
SVG:
PDF:
@Enter-tainer figured out that
stdDeviation
expects a number, e.g.,5 5
, and not5pt 5pt
.This might be fixed by converting
blur.x
andblur.y
to a float with.pt()
when assigning toblur-x
andblur-y
?!The text was updated successfully, but these errors were encountered: