Write maintainable CSS with variables, nesting, mixins, modules, maps, and compiled output.
Lessons
Use silent // and loud /* */ comments correctly.
Sass Comments is easiest to learn by reading the example, changing it, and observing the result.
// Silent comment - removed from compiled CSS
$brand: #4f46e5;
/* Loud comment - kept in expanded CSS output */
.button {
background: $brand; // inline silent comment
}Practice the Sass Comments example in a small scratch file, then explain what changed and why.