Created
March 7, 2019 03:50
-
-
Save brendansudol/df831ba6ab79029ed9df88fa52085a6e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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