#Stay Late and Create
- Make sure that you are running
npm run build
for keeping the server alive. This way you have the sass compiler on, and when you make changes in thescss
folder, the browser will automatically reflect these changes. - Add you styling in the most appropriate folder/file so that our styling chunks are also modularized. For reference to how to use these folders, check out: http://www.sitepoint.com/architecture-sass-project/
- If you are creating a new file, follow the naming convention of
_fileName.scss
with the_
. This is just for our standard, and it indicates that the file is a private one. - Make sure to
@import
your in new filestyle.scss
. Don't worry if you are just working on existing files. - That's it! The client should now have plain CSS, and you can now be more Sassy!