Free use of web font icons Font Awesome library that can be easily used with rails Font Awesome is characterized by not blurring when enlarged. You can change it to your favorite color and size.
Gemfile
gem 'font-awesome-rails'
$ bundle install
For application.css
*= require font-awesome
For application.scss
@import "font-awesome";
Ready
Basic
<i class="fa fa-Icon name"></i>
Resize
<i class="fas fa-Icon name fa-lg"></i>
fa-lg (1.333 ... times) fa-2x (double) fa-3x (3 times) fa-4x (4x) fa-5x (5 times)
If you want to change it to another size or color, you can write it in css.
https://fontawesome.com/v4.7.0/icons/
Recommended Posts