accoutrement 1.0.0.beta.8 → 1.0.0.beta.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/stylesheets/accoutrement/_scale.scss +2 -21
- 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: 709fdd94ce6b00b44a3f88d75ac8fe25c7060899
|
4
|
+
data.tar.gz: 4809a8fd59bc5e6fe8aeb59a4d082714e2767c0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d1733b8023d1da036eeae2749d2226882c264e65596037519ecf77066d69aaa343035e27e68baf98daf8fffbae8dafb6f681dce1e7a39afca93a4fd99d347b6
|
7
|
+
data.tar.gz: 4565d01acd9f110e86a4afd70844dfa5e0cca4dad161496f60ca6b82e3f22a51156230646da419c232c8504733fcc0d85f9e44ee423cd2cebcb4921bbce15843
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.0.beta.
|
1
|
+
1.0.0.beta.8
|
@@ -43,23 +43,6 @@ $sizes: (
|
|
43
43
|
);
|
44
44
|
|
45
45
|
|
46
|
-
// Rem
|
47
|
-
// ---
|
48
|
-
@function _rem(
|
49
|
-
$size
|
50
|
-
) {
|
51
|
-
$_return: $size;
|
52
|
-
|
53
|
-
@if type-of($size) == number
|
54
|
-
and not unitless($size)
|
55
|
-
and unit($size) != rem {
|
56
|
-
$_return: convert-length($size, rem);
|
57
|
-
}
|
58
|
-
|
59
|
-
@return $_return;
|
60
|
-
}
|
61
|
-
|
62
|
-
|
63
46
|
// Get Size
|
64
47
|
// --------
|
65
48
|
@function _get-size(
|
@@ -104,9 +87,7 @@ $sizes: (
|
|
104
87
|
$size: round($base-size * pow($_ratio, $size));
|
105
88
|
}
|
106
89
|
|
107
|
-
|
108
|
-
$size: _rem($size);
|
109
|
-
}
|
90
|
+
$size: convert-length($size, $unit);
|
110
91
|
}
|
111
92
|
|
112
93
|
@return $size;
|
@@ -121,7 +102,7 @@ $sizes: (
|
|
121
102
|
) {
|
122
103
|
@return (
|
123
104
|
font-size: size($size),
|
124
|
-
line-height: rhythm(lines-for-font-size(size($size, px))),
|
105
|
+
line-height: rhythm($lines or lines-for-font-size(size($size, px))),
|
125
106
|
);
|
126
107
|
}
|
127
108
|
|