my projects.css.scss file looks like the bellow one,
// Place all the styles related to the Projects controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
$right-container-background: #3BBFCE;
$right-container-padding: 2px;
.right-container{
background-color: $right-container-background;
color: white;
padding-left: $right-container-padding;
padding-right: $right-container-padding;
}
It says that all styles will be automatically added to your application.css.
But I am not able to use it without importing to application.css i.e.
@charset "utf-8";
@import "projects.css.scss";
@import "partners.css.scss";
So, while i'm in the projects section of my view, is it not going to load all the .scss file imported in application.css ?
application.css? – Benoit Garret Sep 26 '11 at 14:03