Skip to content

Instantly share code, notes, and snippets.

@kopylovvlad
Created February 10, 2018 11:50
Show Gist options
  • Select an option

  • Save kopylovvlad/4765fd2c89fb1f700d3bfcbe79b07684 to your computer and use it in GitHub Desktop.

Select an option

Save kopylovvlad/4765fd2c89fb1f700d3bfcbe79b07684 to your computer and use it in GitHub Desktop.
/* example 2 */
$other-color: red;
$main_color: green;
@mixin border-radius {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
border-radius: 10px;
}
div {
color: $main_color;
@include border-radius;
}
p {
color: blue;
border-radius: 5px;
border-color: $other-color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment