Comments
About comments :
General purpose comments in the top of your file :
// These comments are in single line
// They will not appear in the CSS output,
// since they use the single-line comment syntax.
.ga-button {
/*...*/
}Supports comment :
.go-my-block {
/* LEGACY SUPPORT : will be removed in version 2 */
&__toto {
/*...*/
}
/* END LEGACY SUPPORT */
// replace .go-my-block__toto in version 1.9.6 and higher
&__tata {
/* TODO: do something (this should be avoided in production) */
/*...*/
}
}Code comment :
Last updated