You can clone it on your own.
You need a css compiler (scss to css) which compile scss files to another css folder.
First method is any app just like SCOUT-APP. Second method little more complicated - if you're using VS Code editor, use e.g.:
- "Live Sass Compiler" by Ritwick Dey - https://marketplace.visualstudio.com/items?itemName=ritwickdey.live-sass
The best you can use the potential of the project is change the Live Sass Compiler json file, through File>Preferences>Settings>(search) "Live Sass Compile > settings: Formats"> Edit in settings.json
Edit the latest lines as below: Note: If you don't have this lines, just copy them to your json file from below, or check explain of it.
"liveSassCompile.settings.formats":[
{
"format": "expanded",
"extensionName": ".css",
"savePath": "~/../css/"
}
]