
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
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.
gem "bulma-rails", "~> 1.0.0"
to your application's Gemfile./bin/bundle add dartsass-rails
./bin/rails dartsass:install
rm app/assets/stylesheets/application.css
gem "bulma-rails", "~> 1.0.0"
to your application's Gemfilebundle
sassc-rails
or sass-rails
gem from your application's Gemfilegem "bulma-rails", "~> 1.0.0"
to your application's Gemfile./bin/bundle add dartsass-rails
./bin/rails dartsass:install
if you encountered with LoadError: cannot load such file -- sassc
run rails tmp:clear
and restarting the server.
@use "bulma";
to your application.scss to load all styles.rails dartsass:build
or ./bin/dev
to generated CSS outputModularity 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
For using mixins add the following line to your application.scss
:
@use "sass/utilities/mixins";
For more information about Mixins see Bulma Sass Mixins
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 "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
git checkout -b my-new-feature
)git commit -am 'Added some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that bulma-rails demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.