Skip to content

Instantly share code, notes, and snippets.

@MThakkar121
Created July 31, 2019 10:01
Show Gist options
  • Save MThakkar121/3e2ec2cea885b28aea1fd510736da2c2 to your computer and use it in GitHub Desktop.
Save MThakkar121/3e2ec2cea885b28aea1fd510736da2c2 to your computer and use it in GitHub Desktop.
comments in scss
// This comment won't be included in the CSS.
/* But this comment will, except in compressed mode. */
/* It can also contain interpolation:
* 1 + 1 = #{1 + 1} */
/*! This comment will be included even in compressed mode. */
p /* Multi-line comments can be written anywhere
* whitespace is allowed. */ .sans {
font: Helvetica, // So can single-line commments.
sans-serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment