--
You received this message because you are subscribed to the Google Groups "Compass" group.
To unsubscribe from this group and stop receiving emails from it, send an email to compass-user...@googlegroups.com.
To post to this group, send email to compas...@googlegroups.com.
Visit this group at http://groups.google.com/group/compass-users.
For more options, visit https://groups.google.com/groups/opt_out.
On Mar 6, 2014 3:50 PM, "M. Rentsch" <veggiere...@gmail.com> wrote:
>
> Hi there
>
> I'm starting with SASS/Compass. Everything is installed and the @import "compass/reset"; was successful. Some CSS was imported to my stylesheet. If I add f.ex. @import "compass/css3/border-radius"; nothing happens. No Error, nothing else; my stylesheet still have only the contet of compass/reset. If I take off compass/reset it does not add the radius stuff.
>
> Maybe I do not understand any basic logic of Compass? My understanding of it is; if I put an @import on my SCSS there will be some new Style in my CSS after compiling. These f.ex. mixins then I can use in my classes.
>
Importing most parts or Compass doesn't do anything on its own (reset is different). Mostly, it just makes mixins available to use. You will not see anything in your compiled CSS until you use something you've imported. Type "@import border-radius (1em)" after you've imported the Compass mixins and you will see the CSS magic happen.
Tim