netguru_bootstrapper 1.0.1 → 1.1.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d5745ef8112159fa6236939e039bd0180c4c9c0
|
4
|
+
data.tar.gz: dc2149d6a698b36c013e1f31fadbf7f0cfa4ce39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af81a14ac9743fb70928783176bb5a4b9216c25d8e34dbedc1ee51d2de6eccf5ea9c2abc5ac87017998d7883a94943686e78272f7117f1911bce8c7f87ef2174
|
7
|
+
data.tar.gz: a7633a4d51da97bd32e5fb4d71791c99b5e36e5da7f046b2425a97835be1f4ade63956f60f49653dd89494cf7def1d992f0aa4023b2b55f19dcbcb25241e436b
|
data/CHANGELOG.md
CHANGED
@@ -18,15 +18,19 @@
|
|
18
18
|
@include _position(fixed, $args);
|
19
19
|
}
|
20
20
|
|
21
|
-
@mixin sizing($args) {
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
}
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
21
|
+
@mixin sizing($args, $prefix: "") {
|
22
|
+
$width: if(length($args) == 2, nth($args, 1), $args);
|
23
|
+
$height: if(length($args) == 2, nth($args, 2), $args);
|
24
|
+
#{$prefix}width: $width;
|
25
|
+
#{$prefix}height: $height;
|
26
|
+
}
|
27
|
+
|
28
|
+
@mixin min-sizing($args) {
|
29
|
+
@include sizing($args, "min-");
|
30
|
+
}
|
31
|
+
|
32
|
+
@mixin max-sizing($args) {
|
33
|
+
@include sizing($args, "max-");
|
30
34
|
}
|
31
35
|
|
32
36
|
@mixin circle($args) {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: netguru_bootstrapper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mateusz Czajka
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|