sass/_susy.scss in susy-1.0.9 vs sass/_susy.scss in susy-2.0.0.alpha.1
- old
+ new
@@ -1,16 +1,55 @@
-// ---------------------------------------------------------------------------
-// Partials
+//////////////////////////////
+// Import Required Extensions
+//////////////////////////////
+@import "breakpoint";
-// temporary
-@import "susy/support";
-@import "susy/units";
+//////////////////////////////
+// Default Variables
+//////////////////////////////
-// permanent
-@import "susy/settings";
-@import "susy/functions";
-@import "susy/grid";
-@import "susy/isolation";
-@import "susy/padding";
-@import "susy/margin";
-@import "susy/media";
-@import "susy/background";
+// The grids being used
+$grids: () !default;
+
+// The gutters of the inner columns of the grid
+$gutters: () !default;
+
+// Specifies whether or not you're building mobile-first grids. Defaults to true
+// $mobile-first: true;
+
+// Default output style.
+$output: 'float' !default;
+
+// Whether or not to include border-box or clearfix with all spans
+$include-border-box: false !default;
+$include-clearfix: false !default;
+$include-clear: true !default;
+
+//////////////////////////////
+// Import General Helpers
+//////////////////////////////
+@import "susy/helpers";
+
+//////////////////////////////
+// Import Language Helpers
+//////////////////////////////
+@import "susy/language";
+
+//////////////////////////////
+// Import Math
+//////////////////////////////
+@import "susy/math";
+
+//////////////////////////////
+// Import Grid Helpers
+//////////////////////////////
+@import "susy/grids";
+
+//////////////////////////////
+// Import Gutters Helpers
+//////////////////////////////
+@import "susy/gutters";
+
+//////////////////////////////
+// Import APIs
+//////////////////////////////
+@import "susy/api";
\ No newline at end of file