I know there are several other questions on StackOF for implementing and importing your SCSS file into your CSS file. I went over them and I still could not find a suitable reason why my SCSS was not loading.
This is my in my application.html.erb file
<%= stylesheet_link_tag "application", media: "all",
"data-turbolinks-track" => true %>
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
<%= csrf_meta_tags %>
This is my application.css file. These are the only thing uncommented.
*= require_self
*= require_tree .
This is my custom.css.scss file
@import "bootstrap";
0ther......
...
I was told that how it works in rails is that from the application.css the uncommented code will automatically look for scss files inside my app/assets/stylesheets folder. It has not done that yet and I wish to know.