I am currently working on implementing the skeleton-rails CSS framework into my application. Within the
app/views/layouts/application.html.erb
file, I have created containers and a list nav that require styling. Following the guidelines provided by the skeleton git repository, I added gem 'skeleton-rails'
to my Gemfile
. Subsequently, I executed bundle install
and rails g skeleton:install
from the root directory of my app. These steps led to modifications in my app/assets/stylesheets/application.css
:
= require base
= require layout
= require skeleton
Despite following these instructions, all lines within my file are commented out, with asterisks (*) placed before them. My attempts to uncomment the lines, remove asterisks and equal signs, and other modifications have not resulted in the expected changes upon reloading the page with the skeleton styling. Is there something crucial that I might be overlooking? Any assistance offered will be greatly appreciated. Thank you in advance.