I’m confused on where to put my new css file for ActiveAdmin to use. I have a folder called public/admin/active_admin.css and here https://github.com/gregbell/active_admin/issues/261, it says to put it in active_admin.rb but this doesn’t exist in my application. Where does it go?
Share
All you need to add is
in the file
config/application.rb(or an environment-specific config file) then the file /public/stylesheets/active_admin_custom.cssor you can create a new file:
config/initializers/active_admin.rband put that line of code in there.