postcss-map icon indicating copy to clipboard operation
postcss-map copied to clipboard

Map function based on map name

Open pascalduez opened this issue 9 years ago • 9 comments

var opts = {
  basePath: 'css/',
  maps: [ 'breakpoint.yml', 'font.yml' ]
};
.sowieso {
  font-family: font(text);
}
@media (min-width: breakpoint(medium)) {
  .sowieso {
    width: 100%;
  }
}

pascalduez avatar Mar 06 '15 14:03 pascalduez