[common] load app logo from url instead of base64 source

This commit is contained in:
Maxim Kadushkin 2019-10-07 15:44:14 +03:00
parent b404af401e
commit e4c45d5223

View file

@ -141,7 +141,18 @@
height: 20px;
display: inline-block;
vertical-align: middle;
.background-ximage('@{common-image-path}/header/header-logo.png', '@{common-image-path}/header/header-logo@2x.png', 86px);
background-image: url('@{common-image-path}/header/header-logo.png');
background-repeat: no-repeat;
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-resolution: 2dppx),
only screen and (min-resolution: 192dpi) {
background-image: url('@{common-image-path}/header/header-logo@2x.png');
background-size: 86px auto;
}
}
&.link img {