Skip to content

Seed Props - v0.0.2

Choose a tag to compare

@ItsJonQ ItsJonQ released this 07 Jul 20:55
· 26 commits to master since this release

Changes

This was added to support breakpoint loops in seed-breakpoints

Usage:

// scss
.col- {
  @include prop-map($obj, (width), --at-sm) {
    width: prop(width);
  }
}

// css
.col-1--at-sm {
  width: 10px;
}