Sass excluding application.css file for a page

kicko0o

New Member
I just upgraded my project from Rails 3.0.7 to 3.1.0 and I see that I can use SASS now.I have a page in my application which is just a promotional page at \[code\]/home/subscribe.html.erb\[/code\] and I would like it to not inherit the css declarations being used throughout the application like the scaffold.css. There is a separate subscribe.css file which I would like it to inherit ONLY. Even though I have gone inside my application.css.scss and changed it to have only: \[code\]@import "scaffold.css.scss";\[/code\] the application.css.scss still gets inherited as a part of the application in to the subscribe page.can you please suggest how to make the subscribe page ONLY use the subscribe.css file and no other css?
 
Top