0.18
Low commit activity in last 3 years
There's a lot of open issues
A long-lived project that still receives updates
A modern CSS framework based on Flexbox
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Bulma Sass for Rails

Bulma is a modern CSS framework based on Flexbox that provides ready-to-use frontend components that you can easily combine to build responsive web interfaces. It provides CSS classes to help you style your HTML code.

Installation

From v 1.0.0 Bulma is a full rewrite of using Dart Sass.

This gem integrates Bulma with the rails asset pipeline.

For a fresh Rails application

  1. Add gem "bulma-rails", "~> 1.0.0" to your application's Gemfile
  2. Run ./bin/bundle add dartsass-rails
  3. Run ./bin/rails dartsass:install
  4. Delete default entry point rm app/assets/stylesheets/application.css

For a Rails application that already uses Dart Sass

  1. Add gem "bulma-rails", "~> 1.0.0" to your application's Gemfile
  2. And then execute bundle

For a Rails application that uses sassc-rails or sass-rails

  1. Delete sassc-rails or sass-rails gem from your application's Gemfile
  2. Add gem "bulma-rails", "~> 1.0.0" to your application's Gemfile
  3. Run ./bin/bundle add dartsass-rails
  4. Run ./bin/rails dartsass:install

if you encountered with LoadError: cannot load such file -- sassc run rails tmp:clear and restarting the server.

Usage

  1. Add @use "bulma"; to your application.scss to load all styles.
  2. Run rails dartsass:build or ./bin/dev to generated CSS output

Modularity

Modularity in Bulma helps to import only what you need. As an example, Layout features like Bulma's columns can be loaded directly without requiring any additional files. Simply load the columns.scss file with the @use keyword into your application.scss:

@use "sass/grid/columns";

For more information about Modularity see Modularity in bulma

Mixins

For using mixins add the following line to your application.scss:

@use "sass/utilities/mixins";

For more information about Mixins see Bulma Sass Mixins

Helpful references

Migrating to Bulma v1 and discover what changes, see Migrating to Bulma v1

For information about customizing Bulma, see: Bulma Customization Concepts

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request