I'm looking at the official documentation for including Twitter Bootstrap in Rails, and one of the item that caught me off guard was this:
Then, remove all the *= require_self and *= require_tree . statements from the sass file. Instead, use @import to import Sass files.
My question is, what is the correct way to import other stylesheets? Would I create other *.scss
files, and then use the @import
directive to include them? That is what the documentation seems to imply. If this is the case, how do I import files that are not in the same directory as the file in which I am using the @import
directive?
Thanks!