On my local machine, when I view my Rails App, my stylesheets are successfully linked at /assets/stylesheets/
but on Heroku, it is changed to /stylesheets/
Michael, I before you push to heroku try:
rake assets:precompile
This will precompile them in the public folder so that they can be served to Heroku. Let me know if that didn't work.
Also, make sure the following line exists in config/environments/production.rb
config.serve_static_assets = true
Then of course
git push heroku master