Home > Mobile >  How to change this SASS code into a plain CSS code?
How to change this SASS code into a plain CSS code?

Time:10-10

This is the SASS code I want to change into a plain CSS

@media (min-width: $md) {
 nav ul {
   justify-content: flex-end;
 }

I've been using a compiler in vscode and only this code cant compile into a plain CSS

CodePudding user response:

I would go for nodejs and npm and that package sass

npm install -g sass
sass <input.scss> [output.css]

The $md variable needs to be defined as well.

  • Related