14 lines
472 B
Handlebars
14 lines
472 B
Handlebars
{{#spritesheet}}
|
|
@media only screen {
|
|
@media (-webkit-min-device-pixel-ratio: 1.75) and (-webkit-max-device-pixel-ratio: 1.9),
|
|
(min-resolution: 1.75dppx) and (max-resolution: 1.9dppx),
|
|
(min-resolution: 168dpi) and (max-resolution: 191dpi)
|
|
{
|
|
.toolbar__icon, .menu__icon {
|
|
background-image: url(resources/{{{escaped_image}}});
|
|
background-size: {{scaled width 1.75}}px auto;
|
|
}
|
|
}
|
|
}
|
|
{{/spritesheet}}
|