I have a custom.css.scss file in my assets/stylesheets folder where I've added new css.
All stylesheets work in development but in production the custom.css file isn't included ie no customm.css style changes are implemented in production.
In application.rb I have:
config.assets.initialize_on_precompile = false
config.assets.enabled = true
In production.rb I have:
config.assets.compile = true
In my application.html.erb I have:
<%= stylesheet_link_tag "application" %>
In application.css I have:
*= require_self
*= require foundation_and_overrides
*= require_tree .
*/
My app is on Heroku