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