Skip to content

Instantly share code, notes, and snippets.

@galpratama
Created June 28, 2016 05:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save galpratama/83bf92d37c11c381dededa1227903b9d to your computer and use it in GitHub Desktop.
Save galpratama/83bf92d37c11c381dededa1227903b9d to your computer and use it in GitHub Desktop.
SASS vs SCSS
$font-stack: Helvetica, sans-serif
$primary-color: #333
body
font: 100% $font-stack
color: $primary-color
$font-stack: Helvetica, sans-serif;
$primary-color: #333;
body {
font: 100% $font-stack;
color: $primary-color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment