Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 700 Bytes

README.md

File metadata and controls

36 lines (28 loc) · 700 Bytes

rework-plugin-at2x

Build Status

at2x() plugin for rework, formerly included in core

.at2x()

Adds at-2x keyword to background and background-image declarations to add retina support for images.

.logo {
  background-image: url('component.png') at-2x;
  width: 289px;
  height: 113px
}

yields:

.logo {
  background-image: url('component.png');
  width: 289px;
  height: 113px
}

@media all and (-webkit-min-device-pixel-ratio: 1.5) {
  .logo {
    background-image: url("[email protected]");
    background-size: contain
  }
}