breakpoint()
@media (min-width: 1024px)
{block}
retina()
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx)
{block}
+breakpoint()
.element-1
&__child
+retina()
color: red
.element-2
+breakpoint()
&__child
+retina()
color: red
@media (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 1024px) and (min-resolution: 192dpi), (min-width: 1024px) and (min-resolution: 2dppx) {
__child {
color: #f00;
}
}
@media (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 1024px) and (min-resolution: 192dpi), (min-width: 1024px) and (min-resolution: 2dppx) {
.element-2__child {
color: #f00;
}
}