In the process of developing my Rails application with Twitter Bootstrap, I encountered an interesting situation. After adding a blank "custom.css" file to the "app/assets/stylesheets" folder, everything seemed normal. It wasn't until I customized the ".btn" class that I noticed the changes reflected on the webpage without explicitly linking the "custom.css" file in any HTML code.
It raised a question: Is it standard behavior for files added to the "app/assets/stylesheets" folder to be automatically loaded in the web app? Why is the "custom.css" file being applied automatically, even though no direct link has been established?