I have a application.css.scss with the following content -
@import bootstrap
Now I would like to use the chosen-rails gem, and add the following sprokets directive to my application.css.scss file -
*= require chosen
I installed the sprockets-sass gem, and changed my application.css.scss file to -
@import bootstrap
//*= require chosen
However I dont see the chosen css appear, what am I doing wrong?