I'm working on a ROR app. It has a style.css
stylesheet in its public/scaffold_files
folder. I can see the style reference to this file when I inspect the elements. But now I want to change/add some styles. Any changes I make to this file is not affected in the view. How do we add new styles?? I dont want to use the <style>
tag and write code in the view itself, I want it in a stylesheet.
PS: this style.css
file is referred in the layout
file as below and I can see the same when I do 'view page source'.
<link href="/scaffold_files/style.css" rel="stylesheet" type="text/css" media="all">