webermaximilian92 edited a comment on issue #3301: Add scss to css compiler URL: https://github.com/apache/cloudstack/pull/3301#issuecomment-487510844 Hey @rafaelweingartner , - sass and scss are preprocessors of css. Similar to ES6 or TypeScript for JavaScript. - SCSS provides us many logical functions and advantages to organise CSS rules more easily - Using css is not the common standard for such complex pages like cloudstack anymore. - We can make the css code more modular and maintainable with sass/scss, by splitting files. - We could also split css files, but this is not best prectice, since many css files will result in many server requests, and with sass it's possible to compile many files into one css file full automatically in just under a second after any SCSS change (watches files) and this compiled css file could also get minified, which will enhance loading times of cloudstack pages.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
