It seems as if chromium based browsers can cause problems with the way flags are represented in the dom
currently
<img alt="gb" src="/path/to/flags/gb.svg" class="flag mx-3 gb-flag gb-flag--small" />
However if it is represented as an object it will work
working alternative
<object type="image/svg+xml" data="/path/to/flags/de.svg" class="flag gb-flag gb-flag--small"></object>
I don't know if this has something to do with in my case vue.js because it obviously works in chrome on your home page. But other than that I couldn't spot any difference in my code.
It seems as if chromium based browsers can cause problems with the way flags are represented in the dom
currently
However if it is represented as an object it will work
working alternative
I don't know if this has something to do with in my case vue.js because it obviously works in chrome on your home page. But other than that I couldn't spot any difference in my code.