【Rails】FontAwesomeの導入方法
2444 ワード
はじめに
この記事はFontAwesome
の導入方法について説明します。
Font Awesome
とは、自身のウェブサイトやアプリケーション、WordやPDFなどのドキュメントにも埋め込めるWebアイコンフォントのことで商用利用もできます。
FontAwesomeの導入
まずはgem
を編集します
gemfile
gem 'font-awesome-rails'
忘れずにbundle install
をしましょう
ターミナル
$ bundle install
最後にapplication.scss
を編集します
application.scss
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
* vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
* files in this directory. Styles in this file should be added after the last require_* statement.
* It is generally better to create a new file per style scope.
*
*= require_tree .
*= require_self
*/
/*
*/
@import "bootstrap";
//↓ 追加
@import "font-awesome";
これで使う準備は整いました。
つかってみよう
リンクを入れたい場所に入れることで使えるようになります。
例えばカレンダーのアイコンを表示させてみます
<i class="fa fa-calendar" aria-hidden="true"></i>
Author And Source
この問題について(【Rails】FontAwesomeの導入方法), 我々は、より多くの情報をここで見つけました https://qiita.com/Ochanyoro/items/c99ac5143e3402ecc2e0著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .