Skip to content

Commit

Permalink
Update to v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
csswizardry committed Mar 25, 2013
1 parent ff684ff commit 3b8ab6b
Show file tree
Hide file tree
Showing 4 changed files with 324 additions and 324 deletions.
14 changes: 7 additions & 7 deletions csswizardry-grids.scss
Expand Up @@ -33,7 +33,7 @@
* These namespaces are then used in the library to give you the ability to
* manipulate your layouts based around them, for example:
*
<div class="grid__item one-whole lap-one-half desk-one-third">
<div class="grid__item one-whole lap--one-half desk--one-third">
*
* This would give you a grid item which is 100% width unless it is on a lap
* device, at which point it become 50% wide, or it is on a desktop device, at
Expand All @@ -53,11 +53,11 @@
* quickly be able to piece together any combinations you can imagine, for
* example:
*
`class="grid__item one-whole lap-one-half desk-one-third push--desk-one-third"`
`class="grid__item one-whole lap--one-half desk--one-third push--desk--one-third"`
*
`class="grid__item one-quarter palm-one-half push--palm-one-half"`
`class="grid__item one-quarter palm--one-half push--palm--one-half"`
*
`class="grid__item palm-one-third desk-five-twelfths"`
`class="grid__item palm--one-third desk--five-twelfths"`
*/


Expand Down Expand Up @@ -413,7 +413,7 @@ $class-type: unquote(".");

@each $name in $breakpoint-has-widths {
@include grid-media-query($name) {
@include device-type('#{$name}-');
@include device-type('#{$name}--');
}
}

Expand Down Expand Up @@ -534,7 +534,7 @@ $class-type: unquote(".");
@if $responsive == true{
@each $name in $breakpoint-has-push {
@include grid-media-query($name) {
@include push-setup('#{$name}-');
@include push-setup('#{$name}--');
}
}
}
Expand Down Expand Up @@ -656,7 +656,7 @@ $class-type: unquote(".");
@if $responsive == true{
@each $name in $breakpoint-has-pull {
@include grid-media-query($name) {
@include pull-setup('#{$name}-');
@include pull-setup('#{$name}--');
}
}
}
Expand Down

0 comments on commit 3b8ab6b

Please sign in to comment.