Skip to content
Snippets Groups Projects
Commit 50f48402 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Add webkit prefixes for all mask attributes

So it works in chrome too
parent dabbbacb
No related branches found
No related tags found
No related merge requests found
......@@ -28,8 +28,11 @@ export function getIconCSS(name) {
mask-image: url(${ iconURL });
-webkit-mask-image: url(${ iconURL });
mask-size: contain;
-webkit-mask-size: contain;
mask-repeat: no-repeat;
-webkit-mask-repeat: no-repeat;
mask-position: center center;
-webkit-mask-position: center center;
font-size: 1.1em;
content: "X";
`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment