David Unric
unread,Jan 6, 2013, 4:37:30 PM1/6/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to spree...@googlegroups.com
Hi,
I'm trying to override default css styles by placing my own .css file in app/assets/stylesheets/store/ .
// @import url("/assets/store/variables.css.scss")
.taxons-list {
background-color: $product_background_color;
}
The file is loaded by app/assets/stylesheets/store/all.css but the variable $product_background_color is not expanded, no matter if I comment out the import or not. The variables.css.scss does contain the $product_background_color variable definition, of course.
So how can I use SCSS variables in my own CSS file ?