add explicit width and height to image

This commit is contained in:
Chris Kruining 2024-12-03 11:38:34 +01:00
parent 5ac2496721
commit 4a63b5db13
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2

View file

@ -72,7 +72,7 @@ export default function Editor(props: ParentProps) {
<picture> <picture>
<source srcset="/images/favicon.dark.svg" media="screen and (prefers-color-scheme: dark)" /> <source srcset="/images/favicon.dark.svg" media="screen and (prefers-color-scheme: dark)" />
<source srcset="/images/favicon.light.svg" media="screen and (prefers-color-scheme: light)" /> <source srcset="/images/favicon.light.svg" media="screen and (prefers-color-scheme: light)" />
<img src="/images/favicon.dark.svg" alt="Calque logo" /> <img src="/images/favicon.dark.svg" alt="Calque logo" width="17.5" height="17.5" />
</picture> </picture>
</A> </A>