Integrates Bulma with the rails asset pipeline.
A modern CSS framework based on Flexbox.
Add this line to your application's Gemfile:
gem "bulma-rails", "~> 0.0.17"
And then execute:
$ bundle
To import all assets in your Rails project, add the following line to your application.scss:
@import "bulma";
If you want to customize Bulma, you can import all folders manually in your application.scss:
@import "bulma/utilities/utilities";
@import "bulma/config/variables";
@import "bulma/config/generated-variables";
@import "bulma/base/base";
@import "bulma/elements/elements";
@import "bulma/components/components";
@import "bulma/layout/layout";
For more information about customizing Bulma, see: http://bulma.io/documentation/overview/
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request