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.
From v 1.0.0 Bulma is a full rewrite of using Dart Sass.
This gem integrates Bulma with the rails asset pipeline.
- Add
gem "bulma-rails", "~> 1.0.0"to your application's Gemfile - Run
./bin/bundle add dartsass-rails - Run
./bin/rails dartsass:install - Delete default entry point
rm app/assets/stylesheets/application.css
- Add
gem "bulma-rails", "~> 1.0.0"to your application's Gemfile - And then execute
bundle
- Delete
sassc-railsorsass-railsgem from your application's Gemfile - Add
gem "bulma-rails", "~> 1.0.0"to your application's Gemfile - Run
./bin/bundle add dartsass-rails - Run
./bin/rails dartsass:install
if you encountered with LoadError: cannot load such file -- sassc
run rails tmp:clear and restarting the server.
- Add
@use "bulma";to your application.scss to load all styles. - Run
rails dartsass:buildor./bin/devto generated CSS output
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 "bulma_sass/grid/columns";
For more information about Modularity see Modularity in bulma
For using mixins add the following line to your application.scss:
@use "bulma_sass/utilities/mixins";
For more information about Mixins see Bulma Sass Mixins
Prefix all generated classes with bulma-:
// application.scss
// Load all styles with `bulma-` prefix
@use "bulma_sass" with (
$class-prefix: "bulma-"
);
To overwrite Bulma’s Sass variables with your own value, write @use and the with keyword for example to your application.scss:
// Set your brand colors
$purple: #8a4d76;
$pink: #fa7c91;
$brown: #757763;
$beige-light: #d0d1cd;
$beige-lighter: #eff0eb;
// Override global Sass variables from the /utilities folder
@use "bulma_sass/utilities" with (
$family-primary: '"Nunito", sans-serif',
$grey-dark: $brown,
$grey-light: $beige-light,
$primary: $purple,
$link: $pink,
$control-border-width: 2px
);
// Load all styles
@use "bulma";
This allows you to override Bulma’s global variables from the utilities folder.
For more information about Customization see Customize with Modular Sass
Migrating to Bulma v1 and discover what changes, see Migrating to Bulma v1
- 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