boxmodel-rails 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/boxmodel/rails/version.rb +1 -1
- data/vendor/assets/stylesheets/boxmodel.css.sass +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0416c24956b5468d990916a12900c580f91f40dd
|
|
4
|
+
data.tar.gz: 9a01f2f59741a4f6a7db67cae4f200276ac27d43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 423feb4c3a5e4ad72d0a999fc9d29acc93f5aa370a6caade5dadbf74c9cb9ba83c6b41d4b2888eea95ed9be7b0e709e96c2d37ea6cd9cc3745af772669275d5a
|
|
7
|
+
data.tar.gz: 58c42959140c44e075807172bd21c98f0a0ad3cfd260975d9adffa009ecb0410d86e41c233fb94afdcb50bad2861260ac6cf3e77e00d8d03f09682f680ff94f4
|
|
@@ -100,9 +100,9 @@ $values: null !default
|
|
|
100
100
|
@if $values == null
|
|
101
101
|
@for $i from $minValue through ceil($maxValue/$step)
|
|
102
102
|
$val: $step * $i
|
|
103
|
-
@
|
|
103
|
+
@include classes($val)
|
|
104
104
|
@else
|
|
105
105
|
@each $val in $values
|
|
106
|
-
@
|
|
106
|
+
@include classes($val)
|
|
107
107
|
|
|
108
108
|
|