Bulma customisation workflow
Posted on
by Kevin FoongBulma is one of the most friendly and intuitive CSS frameworks I have come across. This is how you setup a workflow using node-sass to customise Bulma for your web development project.
1. Install node.js on your computer
2. Create a folder called "mybulma" and run npm init
3. Install these two packages:
npm install node-sass --save-dev
npm install bulma --save-dev
4. In "package.json" amend the "css-build" output to exactly where you want the CSS to output to. This will be the location of your web project's CSS folder and filename. For example mine below will output "mybulma.css" to the "../blog/app/static/styles/" folder.
Read more ...