sass can be converted to css, but not working with watch command
问题 everyone, I am SASS beginner, just started to learn Sass. So, this question may seemed ridiculous to someones. Here, I got style.scss $myColor: #009a82; $myString: " some text here "; $myFontSize: 13px; $myMargin: 0px auto; $myWidth: 460px; h1 { color: $myColor; margin: 0; padding: 0; } #container { width: $myWidth; margin: $myMargin; } when I use command sass style.scss style.css I can get a css file: h1 { color: #009a82; margin: 0; padding: 0; } #container { width: 460px; margin: 0px auto;