Using Sass (Scss)

A brief guide to working with Flexible.

Sass (Syntactically Awesome Style Sheets)

Sass is a scripting language that is interpreted or compiled into Cascading Style Sheets (CSS). It is the most mature, stable, and powerful professional grade CSS extension language in the world. Sass gives you the power of variables, mixins, functions, etc.

We personally recommend Visual Studio Code editor with Live Sass Compiler plugin installed.
Visual Studio Code is a free software developed by Microsoft. It's avalable on Mac OS, Windows and Linux.

Just import the assets/scss folder in your project

                                style.scss
                            

and don't forget to import both frameworks Tailwindcss and uikit framework



 
                        
Step 4. Modify Sass components (partials)

Partials is a components of Sass and it’s filename starts with underscore, like this _variables.scss. All the colors and fonts styles located in _variables.scss partial. So just open it in your favorite editor (I prefer Sublime text) and change it. Prepros will automatically compile this file for you and now you have new styles for your new website.