web-apps/apps/common/mobile/resources/less/_mixins.less
2021-02-20 00:05:06 +03:00

11 lines
351 B
Plaintext

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