where does @import "compass/css3"; in zurb's foundation come from?

35,284

The file comes from Compass itself: http://compass-style.org/reference/compass/css3/

Share:
35,284
magicspon
Author by

magicspon

Updated on July 27, 2022

Comments

  • magicspon
    magicspon almost 2 years

    I'm just trying to get my head round all things SASS, Compass and the Front-end framework Foundation from Zurb.

    I've got everything installed properly, and my first foundation template is setup. Now I'm trying to configure what to include from the foundation framework.

    In the foundation.scss file there is a line:

    @import "compass/css3";
    

    I can't for the life of me work out where this file is coming from.

  • magicspon
    magicspon over 11 years
    Right I see. So by using @import "compass/css3" am I including all of the compass variables and mixins. So, for example $default-transition-property, is available for me to use in my scss?
  • cimmanon
    cimmanon over 11 years
    Everything that comes with that file and any file it includes, yes.