Jamal Khan
Jamal Khan

Reputation: 9511

Getting rid of scaffold.css in rails

I want to get rid of the default css stylesheet app/assets/stylesheets/scaffold.css.scss but when I delete it and run the server the styles still seem to be there.

Upvotes: 2

Views: 2877

Answers (2)

jiggysoo
jiggysoo

Reputation: 1638

Clean up your precompiled assets using:

rake assets:clean

Upvotes: 0

kikuchiyo
kikuchiyo

Reputation: 3421

Check out your public ( or public/assets ) folder. You may be serving a 'precompiled' version from public/stylesheets ( or public/assets ). I think you can rake assets:precompile to update your file. Vaguely remember having to do something like this when I was working with some code that someone else had configured the project.

Upvotes: 4

Related Questions