As I delve into the official documentation on incorporating Twitter Bootstrap in Rails, I stumbled upon an interesting tidbit:
It mentions to eliminate all the *= require_self and *= require_tree . statements from the Sass file and opt for @import to import Sass files instead.
My query is, what is the proper method to import other stylesheets? Do I need to create additional *.scss files and then utilize the @import directive for inclusion? This seems to be what the documentation is hinting at. But, if that's the case, how would I import files that are not located in the same directory as the file where I'm applying the @import directive?
Appreciate the insight!