davidkpiano / sass-svg

Inline SVG for Sass.
314 stars 18 forks source link

Add support for `<style>` inside SVG mixin #2

Open davidkpiano opened 9 years ago

davidkpiano commented 9 years ago

Use case: animated inline SVGs! (Still need to test if this will actually work)

@include svg {

  circle {
    @include svg-style((fill: orange, transition: all 0.3s ease-in));

    &:hover {
      @include svg-style((fill: black));
    }
  }

  @include svg(circle, (...));
}