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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4f7a2449c78307c5f9478dd2f34749ab5d00a470
4
- data.tar.gz: 7eea49fc79e1894babaa43bc7e9a8d82f9693262
3
+ metadata.gz: a3e4b52a2f6336812d1ad4d2f37639fba4b17a78
4
+ data.tar.gz: 57dc5567f89a661c22765282a05b3fef54b0c95d
5
5
  SHA512:
6
- metadata.gz: a86fb014e465b480dd4cb894ad865d9063357b8e4d478557f70574b04dc470f144e47eb2df9cf48c0ef1d18f39a4c737d0af7a2413406115bb31dac301290817
7
- data.tar.gz: 93922cb215bb9b96499c3840b534af54df7f3faa6b925566a64d79fc76606039de73b5e51e8f8843ed015a2b27adcaeca30850c5b58aa3ecd17d96797a20ea2a
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--s` - adds `10px` bottom margin
13
- - `.push-bottom--m` - adds `20px` bottom margin
14
- - `.push-bottom--x1` - adds `30px` bottom margin
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
  }
@@ -1,5 +1,5 @@
1
1
  module CC
2
2
  module Styles
3
- VERSION = "0.3.0".freeze
3
+ VERSION = "0.4.0".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codeclimate-styles
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code Climate