gridstrap 1.0.0 → 1.0.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: 8dd8b7359e4ff3ee7c9d92133c0759d0a5866b5a
4
- data.tar.gz: 8e02d55f2f39dd95350c129a8f20451ed0923444
3
+ metadata.gz: 39c54a64d300e53c727eb21056d372e2560ef363
4
+ data.tar.gz: 397f02dea322d7fe9b9cd801f79883010f28f8d0
5
5
  SHA512:
6
- metadata.gz: a41ccdd5fca7e2e4de8691e8ee3422083d9638d66a81c9eadac6d2f49114343d3e823b84d01ab864d1ad51f388c3368517ed5f565f175184ba95d971c444d34f
7
- data.tar.gz: 8f610e93f55349e182dd208ea9531e867578b8e3eccc0bd75d3ec1904d216e8f5e6f89b9501e9e88875f84fdc7fbd23523961b3c035025b9a6de18e542a65455
6
+ metadata.gz: 7d0614cef0ca91169cd5f15c23a8478b43ebd135e7a50e2d40f71a67d848112275dd62f0548fba7d063f3eb57bea3335835d3c7c5147521eb5efe0b709c41883
7
+ data.tar.gz: 7b25763303341c1618d2b178f28e292c7bd6c13209173dcc92fa721f2a6aacc855283b4b0db2b93a8f5d5b2981232ca920a099c00594715c6fe69c902eb15792
@@ -26,13 +26,13 @@
26
26
 
27
27
  @mixin gridstrap($responsive: "none", $fluid: true, $cols: 0, $gutter: 0) {
28
28
  @if $cols != 0 {
29
- $gridstrap-cols: $cols !global;
29
+ $gridstrap-cols: $cols;
30
30
  }
31
31
  @if $gutter != 0 {
32
- $gridstrap-gutter: $gutter !global;
32
+ $gridstrap-gutter: $gutter;
33
33
  }
34
34
 
35
- $gridstrap-fluid: $fluid !global;
35
+ $gridstrap-fluid: $fluid;
36
36
 
37
37
  // Base Grid Setup
38
38
  @include gridstrap-base;
@@ -15,38 +15,38 @@
15
15
 
16
16
  @mixin gridstrap-use($uses...) {
17
17
  // Default all to false
18
- $gridstrap-use-span: false !global;
19
- $gridstrap-use-of: false !global;
20
- $gridstrap-use-offset: false !global;
21
- $gridstrap-use-push: false !global;
22
- $gridstrap-use-pull: false !global;
23
- $gridstrap-use-rtl: false !global;
18
+ $gridstrap-use-span: false;
19
+ $gridstrap-use-of: false;
20
+ $gridstrap-use-offset: false;
21
+ $gridstrap-use-push: false;
22
+ $gridstrap-use-pull: false;
23
+ $gridstrap-use-rtl: false;
24
24
 
25
25
  // If first $use isn"t "all"...
26
26
  @if nth($uses, 1) != "all" {
27
27
  // Loop through and set matched options to true
28
28
  @each $use in $uses {
29
29
  @if $use == "span" {
30
- $gridstrap-use-span: true !global;
30
+ $gridstrap-use-span: true;
31
31
  } @else if $use == "of" {
32
- $gridstrap-use-of: true !global;
32
+ $gridstrap-use-of: true;
33
33
  } @else if $use == "offset" {
34
- $gridstrap-use-offset: true !global;
34
+ $gridstrap-use-offset: true;
35
35
  } @else if $use == "move" {
36
- $gridstrap-use-push: true !global;
37
- $gridstrap-use-pull: true !global;
36
+ $gridstrap-use-push: true;
37
+ $gridstrap-use-pull: true;
38
38
  } @else if $use == "rtl" {
39
- $gridstrap-use-rtl: true !global;
39
+ $gridstrap-use-rtl: true;
40
40
  }
41
41
  }
42
42
  } @else {
43
43
  // Make all true
44
- $gridstrap-use-span: true !global;
45
- $gridstrap-use-of: true !global;
46
- $gridstrap-use-offset: true !global;
47
- $gridstrap-use-push: true !global;
48
- $gridstrap-use-pull: true !global;
49
- $gridstrap-use-rtl: true !global;
44
+ $gridstrap-use-span: true;
45
+ $gridstrap-use-of: true;
46
+ $gridstrap-use-offset: true;
47
+ $gridstrap-use-push: true;
48
+ $gridstrap-use-pull: true;
49
+ $gridstrap-use-rtl: true;
50
50
  }
51
51
  }
52
52
 
@@ -60,13 +60,13 @@
60
60
 
61
61
  @mixin gridstrap-sizes($sm: 0, $md: 0, $lg: 0) {
62
62
  @if $sm != 0{
63
- $gridstrap-container-sm: $sm !global;
63
+ $gridstrap-container-sm: $sm;
64
64
  }
65
65
  @if $md != 0{
66
- $gridstrap-container-md: $md !global;
66
+ $gridstrap-container-md: $md;
67
67
  }
68
68
  @if $lg != 0{
69
- $gridstrap-container-lg: $lg !global;
69
+ $gridstrap-container-lg: $lg;
70
70
  }
71
71
  }
72
72
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gridstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Doug Wollison