flex_classes 0.2.0 → 0.2.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 938abf59d57c97f4e7465f4359d509d79a3db629
4
- data.tar.gz: '096335e1288a37abf283007879b5a3e3b823439e'
3
+ metadata.gz: 92004687bb8213f95fcf01721dcaaf240eb205af
4
+ data.tar.gz: 50ca2584db22c7a06c1aa0bd1b09748155809cb0
5
5
  SHA512:
6
- metadata.gz: 902e5655eaf10318708b7108b9882e39979a988f70c098a40bce260d92830c22918e787fcc26dee979d5e365a9e4af12590d0efdcff5ab7aaad2d736d85f3eef
7
- data.tar.gz: 2912f19c250fa017c8f9ed296b0468beb76d8bc1c1af9fabdc34c41905d10011755ef2bfc0d0555f571dfeeef6555e908086c80b07d02096acd5af3a4f7f3ea7
6
+ metadata.gz: f6fb4fb136be8bca7890ceb0e7adced9b97638dc4c97e4c5a7c9632878deec99851a0ee8e387e052fd808216d0840904e91a876d1739722d41892d3a63078e9c
7
+ data.tar.gz: 4d58c5897a4b17592b853eaa2be1b29c88d5ae70635852a30d7c81b3a34322a875e1bc9dc3047682ecae846a8629ab83147bfcabeb4d7dc3b46c27dd23c5917c
data/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.2.1] - 2018-06-06
8
+ ### added
9
+ - bug-fix in global variables
10
+
11
+
7
12
  ## [0.2.0] - 2018-06-06
8
13
  ### added
9
14
  - variables for setting values in app stylesheet
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- flex_classes (0.1.1)
4
+ flex_classes (0.2.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -8,18 +8,18 @@ $flex-classes-margin-vertical: 6px !default
8
8
  $flex-classes-margin-horizontal: 10px !default
9
9
 
10
10
  $flex-classes-padding-vertical: 6px !default
11
- $flex-classes-padding-vertical: 10px !default
11
+ $flex-classes-padding-horizontal: 10px !default
12
12
 
13
13
  .flex
14
14
  display: flex
15
15
  box-sizing: border-box
16
16
 
17
- $fc-m-h: 10px
18
- $fc-m-v: 6px
17
+ $fc-m-v: $flex-classes-margin-vertical
18
+ $fc-m-h: $flex-classes-margin-horizontal
19
19
  $fc-m: $fc-m-v $fc-m-h
20
20
 
21
- $fc-p-h: 10px
22
- $fc-p-v: 6px
21
+ $fc-p-v: $flex-classes-padding-vertical
22
+ $fc-p-h: $flex-classes-padding-horizontal
23
23
  $fc-p: $fc-p-v $fc-p-h
24
24
 
25
25
 
@@ -1,3 +1,3 @@
1
1
  module FlexClasses
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flex_classes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kiryl Smalouski