Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brendansudol/df831ba6ab79029ed9df88fa52085a6e to your computer and use it in GitHub Desktop.
Save brendansudol/df831ba6ab79029ed9df88fa52085a6e to your computer and use it in GitHub Desktop.
1,2c1,2
< @font-stack: Helvetica, sans-serif;
< @primary-color: #333;
---
> $font-stack: Helvetica, sans-serif;
> $primary-color: #333;
5,6c5,6
< font-family: @font-stack;
< color: @primary-color;
---
> font-family: $font-stack;
> color: $primary-color;
9,12c9,12
< .transform(@property) {
< -webkit-transform: @property;
< -ms-transform: @property;
< transform: @property;
---
> @mixin transform($property) {
> -webkit-transform: $property;
> -ms-transform: $property;
> transform: $property;
16c16
< .transform(rotate(30deg));
---
> @include transform(rotate(30deg));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment