You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
I'm running into an issue with using Polymer CSS build with Iron Icon. It looks that CSS Build will remove duplicates of CSS properties that are inside a CSS Mixin. This causes problems when using Iron Icon, because it uses duplicate CSS properties as a fallback for legacy browsers.
I'm running into an issue with using Polymer CSS build with Iron Icon. It looks that CSS Build will remove duplicates of CSS properties that are inside a CSS Mixin. This causes problems when using Iron Icon, because it uses duplicate CSS properties as a fallback for legacy browsers.
So this
--layout-inline: { display: -ms-inline-flexbox; display: -webkit-inline-flex; display: inline-flex; };
Becomes
--layout-inline: { display: inline-flex; };
This is particularly a problem when you have to support legacy browsers and devices. Thank you
The text was updated successfully, but these errors were encountered: