Today I did a “git push heroku master” do deploy an application. And than suddenly I got a big exception and the build failed.
The funny thing is that CSS is the root of the problem. This CSS line here broke the deployment:
height: inherit important!;
Indeed it should be:
height: inherit !important;
Heroku is very sensible 🙂