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
The generated SVG for the Safari Mask Icon sets the svg width and height to 16pT, instead of 16pX. 16pt translates in my safari to 21px so the icon is deemed invalid and nothing is shown in a pinned tab. Works when I change it to 16px.
So it should be:
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="16.000000px" height="16.000000px" viewBox="0 0 16.000000 16.000000" preserveAspectRatio="xMidYMid meet">
instead of:
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="16.000000pt" height="16.000000pt" viewBox="0 0 16.000000 16.000000" preserveAspectRatio="xMidYMid meet">
The text was updated successfully, but these errors were encountered:
Two things:
In doubt, I prefer to simply rollback the change of #242 .
Sorry, something went wrong.
Deployed a minute ago.
No branches or pull requests
an-tex commentedMar 9, 2017
The generated SVG for the Safari Mask Icon sets the svg width and height to 16pT, instead of 16pX. 16pt translates in my safari to 21px so the icon is deemed invalid and nothing is shown in a pinned tab. Works when I change it to 16px.
So it should be:
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="16.000000px" height="16.000000px" viewBox="0 0 16.000000 16.000000" preserveAspectRatio="xMidYMid meet">
instead of:
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="16.000000pt" height="16.000000pt" viewBox="0 0 16.000000 16.000000" preserveAspectRatio="xMidYMid meet">
The text was updated successfully, but these errors were encountered: