README.mdown in grid-coordinates-1.0.8 vs README.mdown in grid-coordinates-1.1.0
- old
+ new
@@ -20,19 +20,39 @@
### Configure as needed and import
// Configure grid coordinates
$grid-columns: 12 !default
- $grid-pixels: 60px !default
+ $grid-width: 60px !default
$grid-gutter-width: 20px !default
+ $overflow-allowed: false !default
@import grid-coordinates
+ // Only needed if you're using the classes instead of the mixins
@include grid-coordinates
...
-### Available extends
+The `$overflow-allowed` setting controls which of Compass' two clearfix mixins is used. The default setting, false, will clip any content that overflows a grid block. If you need overflowing content to remain visible (i.e., a drop-down menu inside a grid block) change this setting the true.
+
+### Using the Mixins
+
+Use these mixins in your Sass stylesheets. For an example of this in use, see `templates/project`.
+
+`@include grid-container`
+
+`@include nested-grid-container`
+
+`@include grid(4)`
+
+`@include grid-prefix(4)`
+
+`@include grid-suffix(4)`
+
+`@include grid-full`
+
+### Using the Classes
Use the extend classes in your HTML or use them to extend in your Sass stylesheets. For an example of this in use, see `templates/project`.
`@extend .grid-container`
\ No newline at end of file