Write maintainable CSS with variables, nesting, mixins, modules, maps, and compiled output.
Lessons
Choose expanded or compressed CSS output.
Output Styles is easiest to learn by reading the example, changing it, and observing the result.
// Expanded output for development with a source map
// npx sass src/main.scss dist/main.css
// Compressed, minified output for production (no source map)
// npx sass src/main.scss dist/main.css --style=compressed --no-source-mapPractice the Output Styles example in a small scratch file, then explain what changed and why.