web-apps/apps/common/mobile/resources/less/_mixins.less
2020-11-19 20:28:28 +03:00

11 lines
335 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}");
}
.encoded-svg-background(@svg) {
@url: `encodeURIComponent(@{svg})`;
background-image: url("data:image/svg+xml;charset=utf-8,@{url}");
}