「Ruby/rails/twitter bootstrap」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==sassでtwitter bootstrapをインストール== GemFile gem 'bootstrap-sass', '~> 3.3.7' gem 'sass-rails', '>= 3.2' $ bundle install app/assets/stylesheets/applicati...」) |
|||
行9: | 行9: | ||
@import "bootstrap"; | @import "bootstrap"; | ||
− | + | サーバを再起動してgemを反映する |
2017年11月17日 (金) 08:23時点における最新版
sassでtwitter bootstrapをインストール
GemFile
gem 'bootstrap-sass', '~> 3.3.7' gem 'sass-rails', '>= 3.2' $ bundle install
app/assets/stylesheets/application.scss
// "bootstrap-sprockets" must be imported before "bootstrap" and "bootstrap/variables" @import "bootstrap-sprockets"; @import "bootstrap";
サーバを再起動してgemを反映する