我正在尝试将用于引导的 Fezvrasta 材料设计添加到我的 Rails 应用程序中,但不幸的是没有成功。
谁能给我一些关于如何做到这一点的帮助?
首先,我收到以下错误消息:
File to import not found or unreadable: bootstrap-material-design.
而在第二个这个:
'It's not clear which file to import'
编辑
所以对于第一个链接,我这样做了
宝石文件
source 'https://rails-assets.org' do
gem 'rails-assets-bootstrap-material-design'
end
应用程序.css.scss
我都试过了
@import 'bootstrap-material-design';
和
*= require bootstrap-material-design
在第二个我运行命令
bower install bootstrap-material-design
在我的 application.css.scss 之后我做了
@import '../../../vendor/bower_components/bootstrap-material-design/sass/bootstrap-material-design';
关于如何解决这个问题的任何提示?
谢谢