In development, in style.css.scss I have:
@import'../typography.css';
In development, this works because I can see the effects when I load the site. The ../
is there because landing is located at app/assets/stylesheets/landing
and typography.css is located at app/assets/stylesheets
I run rake assets:precompile
and rake assets:clean
locally before pushing. In production on Heroku, I don't think the css file is being properly called because the effects it should have do not appear. All other CSS files are being properly called because I can see the styles rendered. How do I fix this?