materialize-sass is a Sass powered version of Materialize, a modern responsive front-end framework based on Material Design.
In your Gemfile you need to add the materialize-sass gem:
gem 'materialize-sass'NOTE: Ensure that the sass-rails gem is presented in your Gemfile.
And then run the bundler and restart your server to make the files available through the pipeline:
$ bundle installOr install it separately:
$ gem install materialize-sassImport Materialize styles in app/assets/stylesheets/application.scss:
@import "materialize";NOTE: If you have just generated a new Rails application, it may come with a .css file instead. If this file exists, it will be served instead of Sass, so remove it.
$ rm app/assets/stylesheets/application.cssHINT: Override materialize color variable.
Since materialize color scheme are declared in _color.scss you should import the color.scss first. then you can override color variable just like this:
@import "materialize/components/color";
$primary-color: color("blue", "lighten-2") !default;
@import 'materialize';or
You can import each component just like in this file below: https://github.com/mkhairi/materialize-sass/blob/master/app/assets/stylesheets/materialize.scss
Require Materialize javascripts in app/assets/javascripts/application.js:
//= require jquery
//= require materialize-sprocketsin your application.scss
@import "materialize/extras/nouislider";in your application.js
//= require materialize/extras/nouislider- Fork it ( https://github.com/mkhairi/materialize-sass/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request