romo 0.19.1 → 0.19.2
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 +5 -5
- data/assets/css/romo/base.scss +32 -0
- data/lib/romo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
SHA1:
|
|
3
|
-
data.tar.gz: 8138f63992cc7497d64037372684692299cce71f
|
|
4
|
-
metadata.gz: 65042d7a48b309125b015a9067c4b50b5ee95e34
|
|
5
2
|
SHA512:
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
metadata.gz: 1e1c9f9b88cfa50366a8c658d12251b7414682f6261cf6a314c30f90dfb2ad343c9cbb1872e1903f330a5c0c2d22c1e722092ac57938d417b9cf4a623055618b
|
|
4
|
+
data.tar.gz: c41dbc991e089a775f9ec8c3743153bc0c6a29ffe00ffe6d1c4a67286aae89cbbb44cb2ba84d6a496d312fb57daf7fea09b1f717d8483beb1affc37819ff8fe9
|
|
5
|
+
SHA1:
|
|
6
|
+
metadata.gz: 2c228f78f2a8852cda11f95130b029863c62a478
|
|
7
|
+
data.tar.gz: 0a5ea88cefc3a57aec4ab3f5659905460711bb05
|
data/assets/css/romo/base.scss
CHANGED
|
@@ -228,6 +228,38 @@ body.romo {
|
|
|
228
228
|
.romo-align-middle { @include align-middle(!important); }
|
|
229
229
|
.romo-align-bottom { @include align-bottom(!important); }
|
|
230
230
|
|
|
231
|
+
.romo-flex-align-left {
|
|
232
|
+
@include display-flex;
|
|
233
|
+
@include flex-direction(column);
|
|
234
|
+
@include flex-align-items(flex-start)
|
|
235
|
+
}
|
|
236
|
+
.romo-flex-align-center {
|
|
237
|
+
@include display-flex;
|
|
238
|
+
@include flex-direction(column);
|
|
239
|
+
@include flex-align-items(center)
|
|
240
|
+
}
|
|
241
|
+
.romo-flex-align-right {
|
|
242
|
+
@include display-flex;
|
|
243
|
+
@include flex-direction(column);
|
|
244
|
+
@include flex-align-items(flex-end)
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.romo-flex-align-top {
|
|
248
|
+
@include display-flex;
|
|
249
|
+
@include flex-direction(column);
|
|
250
|
+
@include flex-justify-content(flex-start);
|
|
251
|
+
}
|
|
252
|
+
.romo-flex-align-middle {
|
|
253
|
+
@include display-flex;
|
|
254
|
+
@include flex-direction(column);
|
|
255
|
+
@include flex-justify-content(center);
|
|
256
|
+
}
|
|
257
|
+
.romo-flex-align-bottom {
|
|
258
|
+
@include display-flex;
|
|
259
|
+
@include flex-direction(column);
|
|
260
|
+
@include flex-justify-content(flex-end);
|
|
261
|
+
}
|
|
262
|
+
|
|
231
263
|
/* Scaffolding */
|
|
232
264
|
/* ----------- */
|
|
233
265
|
|
data/lib/romo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: romo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.19.
|
|
4
|
+
version: 0.19.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kelly Redding
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2017-
|
|
13
|
+
date: 2017-07-11 00:00:00 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: assert
|