codeclimate-styles 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/stylesheets/cc/styles/modules/_util.scss +8 -3
- data/lib/cc/styles/version.rb +1 -1
- 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: a3e4b52a2f6336812d1ad4d2f37639fba4b17a78
|
4
|
+
data.tar.gz: 57dc5567f89a661c22765282a05b3fef54b0c95d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b121b0cd42591d239e053d199d9cf801dc30279114fcea1700b227f489b387cc17d1bb0c15fdfde0336d590795c41938b278896e7008fc970a93634383b5b112
|
7
|
+
data.tar.gz: eaddcd9d5fc2f16f3411660ff0e95633bfa8124dfd161f0ca40bd5e1310035459d5e46ebd95a1bb2ae34e3aca7bb22f41110b455006faccb9ec9a2b713e8a669
|
@@ -9,11 +9,16 @@ Needing to make vertical space between elements is a common need: several
|
|
9
9
|
classes are available for the most common amounts desired, in steps of `10px`
|
10
10
|
(one third of the grid's vertical baseline, `30px`).
|
11
11
|
|
12
|
-
- `.push-bottom--
|
13
|
-
- `.push-bottom--
|
14
|
-
- `.push-bottom--
|
12
|
+
- `.push-bottom--0` - sets 0 bottom margin
|
13
|
+
- `.push-bottom--s` - sets `10px` bottom margin
|
14
|
+
- `.push-bottom--m` - sets `20px` bottom margin
|
15
|
+
- `.push-bottom--x1` - sets `30px` bottom margin
|
15
16
|
*/
|
16
17
|
|
18
|
+
.push-bottom--0 {
|
19
|
+
margin-bottom: 0;
|
20
|
+
}
|
21
|
+
|
17
22
|
.push-bottom--s {
|
18
23
|
margin-bottom: 10px;
|
19
24
|
}
|
data/lib/cc/styles/version.rb
CHANGED