In the process of creating a Ruby on Rails website, I have integrated a bootstrap
navigation bar into my project by placing it in a partial file titled "_navheader.html.erb"
within the layouts
folder. This partial is then rendered immediately after the opening body
tag in the application.html.erb
file. However, an issue has arisen as I also have specific CSS styles for the navigation bar stored in a separate file named navheader.css.scss
. How can I effectively link this CSS file to the HTML document _navheader.html.erb
?