In my Rails project I have 3 .css files:
application.css
bootstrap.css
todo.scss
If I wanted to add another .css library is there a way of controlling the order the .css files are read when .require_tree
is called in application.css
.
Also how does Rails know to load load bootstrap.css
before todo.scss
so that bootstrap does not overide the specific View scope styling in todo.scss
?