I am new to both Meteor and Sass. I apologize if this is a question with an obvious answer.
Looking at the basics of sass.
I see some cool features, such as extending classes and using partials. But I am curious as to how to integrate these features with Meteor.
Doesn't Meteor automatically compress and concatenate all of your CSS? So is there really a need for partials
or @import
?
My second question concerns organizing your files.
Say I have a css class: .overlay
and I want to create a class called blah
that extends overlay
, but blah
and overlay
are in different files. If I am not using import
(because Meteor is doing it for me) Should I just make sure that the overlay
class comes before my blah
class by putting the file that overlay
is declared in at client/lib
or is there some config file I should be modifying?