GIPainter-grid 0.3.6 → 0.3.7

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: 0c1055ac7f6b9de54dfb513ff530c1f09bfb9527
4
- data.tar.gz: 2ecb880894bdb2587bffa010ec461360cd44405f
3
+ metadata.gz: d85e05af3ccce6b44ba597beed05b8ccbfa494bd
4
+ data.tar.gz: 8dfa17963ac18ec20ee955eea4813ef6c5c87d33
5
5
  SHA512:
6
- metadata.gz: 4566e641eccbbc9ff73f59d5f7b9ddcd269b996412d40bc19ae39ed1356548e3c6a4df8cb78c9d79f9c8f6fb3d47e572b53a9c92b25a10241dd74456da77a8a5
7
- data.tar.gz: c643424e759474f1c86a4c137a97fc313bd9f3eb5df7cf0c43fe39a93603b5c8e70de3b97de759522bdc03af2eeab735844adbdfa30900c2cb194519138d7fd8
6
+ metadata.gz: da3908efc5a31734fb7b671be99ea981cae70e257019df8389881db90df84aff2c888b2b487d591a5dd0009d3cca4780148b444d59e272757037330a95f1d5a2
7
+ data.tar.gz: 9681772c115601338c0836fea530762b4bca59beb4da678dbfcefee9537c3419c21a25af60e53c3dcd8945cd8429fb74ee612db1b951f0899339a9f5be93233b
@@ -1,17 +1,24 @@
1
1
  .m-grid {
2
2
  clear: both;
3
3
  display: block;
4
+ display: block;
5
+ max-width: $grid-max-width;
6
+ margin: 0 auto;
7
+ padding: 0 $outer-margin;
8
+ *zoom: 1;
9
+
10
+ &:before,
11
+ &:after {
12
+ content: " ";
13
+ display: table;
14
+ line-height: 0;
15
+ }
16
+ &:after {
17
+ clear: both;
18
+ }
4
19
 
5
- &__wrapper {
6
- *zoom: 1;
7
- &:before,
8
- &:after {
9
- content: " ";
10
- display: table;
11
- line-height: 0;
12
- }
13
- &:after {
14
- clear: both;
15
- }
20
+ &--full {
21
+ max-width: 100%;
22
+ padding: 0;
16
23
  }
17
24
  }
@@ -37,58 +37,6 @@
37
37
  }
38
38
  }
39
39
  }
40
-
41
- &--no-wrap {
42
- @include flex-wrap(nowrap);
43
- }
44
-
45
- &--start {
46
- @include justify-content(flex-start);
47
- text-align: start;
48
- }
49
-
50
- &--center {
51
- @include justify-content(center);
52
- text-align: center;
53
- }
54
-
55
- &--end {
56
- @include justify-content(flex-end);
57
- text-align: end;
58
- }
59
-
60
- &--around {
61
- @include justify-content(space-around);
62
- }
63
-
64
- &--between {
65
- @include justify-content(space-between);
66
- }
67
-
68
- &--top {
69
- @include align-items(flex-start);
70
- }
71
-
72
- &--middle {
73
- @include align-items(center);
74
- }
75
-
76
- &--bottom {
77
- @include align-items(flex-end);
78
- }
79
-
80
- &--first {
81
- order: -1;
82
- }
83
-
84
- &--last {
85
- order: 1;
86
- }
87
-
88
- &--no-gutter{
89
- padding-left: 0;
90
- padding-right: 0;
91
- }
92
40
  }
93
41
 
94
42
  @each $name, $value in $default_breakpoints {
@@ -118,53 +66,6 @@
118
66
  }
119
67
  }
120
68
  }
121
-
122
- &--no-wrap {
123
- @include flex-wrap(nowrap);
124
- }
125
-
126
- &--start {
127
- @include justify-content(flex-start);
128
- text-align: start;
129
- }
130
-
131
- &--center {
132
- @include justify-content(center);
133
- text-align: center;
134
- }
135
-
136
- &--end {
137
- @include justify-content(flex-end);
138
- text-align: end;
139
- }
140
-
141
- &--around {
142
- @include justify-content(space-around);
143
- }
144
-
145
- &--between {
146
- @include justify-content(space-between);
147
- }
148
-
149
- &--top {
150
- @include align-items(flex-start);
151
- }
152
-
153
- &--middle {
154
- @include align-items(center);
155
- }
156
-
157
- &--bottom {
158
- @include align-items(flex-end);
159
- }
160
-
161
- &--first {
162
- order: -1;
163
- }
164
-
165
- &--last {
166
- order: 1;
167
- }
168
69
  }
169
70
  }
170
71
  }
@@ -3,14 +3,8 @@
3
3
  @include flexbox((display: flex, flex-direction: row));
4
4
  @include flex(0 1 auto);
5
5
  @include flex-wrap(wrap);
6
- max-width: $grid-max-width;
7
6
  box-sizing: border-box;
8
7
 
9
- &--full {
10
- max-width: 100%;
11
- padding: 0;
12
- }
13
-
14
8
  &--reverse {
15
9
  @include flex-direction(row-reverse);
16
10
  }
@@ -21,4 +15,51 @@
21
15
  padding-right: 0;
22
16
  }
23
17
  }
18
+
19
+ &--no-wrap {
20
+ @include flex-wrap(nowrap);
21
+ }
22
+
23
+ &--start {
24
+ @include justify-content(flex-start);
25
+ text-align: start;
26
+ }
27
+
28
+ &--center {
29
+ @include justify-content(center);
30
+ text-align: center;
31
+ }
32
+
33
+ &--end {
34
+ @include justify-content(flex-end);
35
+ text-align: end;
36
+ }
37
+
38
+ &--around {
39
+ @include justify-content(space-around);
40
+ }
41
+
42
+ &--between {
43
+ @include justify-content(space-between);
44
+ }
45
+
46
+ &--top {
47
+ @include align-items(flex-start);
48
+ }
49
+
50
+ &--middle {
51
+ @include align-items(center);
52
+ }
53
+
54
+ &--bottom {
55
+ @include align-items(flex-end);
56
+ }
57
+
58
+ &--first {
59
+ order: -1;
60
+ }
61
+
62
+ &--last {
63
+ order: 1;
64
+ }
24
65
  }
@@ -1,3 +1,3 @@
1
1
  module GIPainter_grid
2
- VERSION = '0.3.6'
2
+ VERSION = '0.3.7'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: GIPainter-grid
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Genious Interactive