css - Ruby application doesn't load Bootstrap classes -
i'm doing views ruby application.this example:
http://mailclient-dmuldoon.c9.io/app/statistics/page_2
the first table has "table table-hover" class, doesn't work, bootstrap doesn't load correctly.
i don't know ruby, how can fix it? should check?
bootstrap called in file: app/assets/javascriptsapplication.js
with line of code:
//= require components/bootstrap.min.js
do have bootstrap css files loaded? depending on bootstrap gem have loaded, might required. in app/assets/stylesheets/application.scss might need have following 3 lines:
@import "bootstrap-sprockets"; @import "bootstrap"; @import 'bootstrap/theme';
Comments
Post a Comment