6 lines
194 B
Plaintext
6 lines
194 B
Plaintext
// Encoded SVG Background
|
|
.encoded-svg-mask(@svg) {
|
|
@url: `encodeURIComponent(@{svg})`;
|
|
background-color: @themeColor;
|
|
-webkit-mask-image: url("data:image/svg+xml;charset=utf-8,@{url}");
|
|
} |