Created
January 26, 2017 16:29
-
-
Save angelorubin/83dcce05702c2064eec87d18b73216e1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
| // ---- | |
| // Sass (v3.4.21) | |
| // Compass (v1.0.3) | |
| // ---- | |
| @mixin respond-to($color, $width) { | |
| border: { | |
| color: $color; | |
| width: $width; | |
| style: dashed; | |
| } | |
| } | |
| p { @include respond-to(blue, 1in); } |
This file contains hidden or 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
| p { | |
| border-color: blue; | |
| border-width: 1in; | |
| border-style: dashed; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment