sass-zero 1.1.1 → 1.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 438e8f1e1f375d54c379aec29c9a3384a77d6cd94ae9bde0f9ce02fbba1bcfc7
4
- data.tar.gz: 75a78be4c281f9f6a8d6e434b3a1aa99b37d68d360a145704e6b0125fcb76e0a
3
+ metadata.gz: bb94f7877ecbf56cc61f72c37bfd70c3f251e0aea75d45bfb94869cbb777276f
4
+ data.tar.gz: 68db4e8875bf2275bfdbb7709794cf51e9de3d444a0c12bfca782118c727cb3a
5
5
  SHA512:
6
- metadata.gz: 94706d42564c0b3b158c98c5a7b774d1c1978d5c1f5af6c1515334bb271b53c0bfa75fa5493e64eb4abdc0067d0cd6ddbf29dd4367bf0651288010ed07649072
7
- data.tar.gz: 770f78854e72f4d4d48677632804dc74bff56cf59d8cb8ddf06f8dd53a974b06e0fa00f06d7036eefd026bff22eb92023c62aefa5de9fd89be23c91d91cdbf05
6
+ metadata.gz: 7a44389359af7290359a2751d402cb50d80bb60f13d84b61835bb6fb6cb9eeb2e50543e7c904bf8f70e0be12b82a135577662bedf063a138652171e450e301d7
7
+ data.tar.gz: ce0d7bcc4c03b830606f2bf70269ca6253ac90379cf99b60e974a64de80d0f6a5e8c4433737fe223334434b5cf1273618bfcc9ec0ed6f0ee6903cb03a2a4d285
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sass-zero (1.1.1)
4
+ sass-zero (1.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -2,10 +2,10 @@
2
2
 
3
3
  // *******************************************************************
4
4
  // Pad Utilities
5
- // .pad-[xs|sm|md|lg|xl|2xl|3xl]--top
6
- // .pad-[xs|sm|md|lg|xl|2xl|3xl]--right
7
- // .pad-[xs|sm|md|lg|xl|2xl|3xl]--bottom
8
- // .pad-[xs|sm|md|lg|xl|2xl|3xl]--left
5
+ // .pad-[xs|sm|md|lg|xl]--top
6
+ // .pad-[xs|sm|md|lg|xl]--right
7
+ // .pad-[xs|sm|md|lg|xl]--bottom
8
+ // .pad-[xs|sm|md|lg|xl]--left
9
9
  // *******************************************************************
10
10
  @each $scale, $size in $size-map {
11
11
  .pad-#{$scale}--top {
@@ -2,10 +2,10 @@
2
2
 
3
3
  // *******************************************************************
4
4
  // Pull Utilities
5
- // .pull-[xs|sm|md|lg|xl|2xl|3xl]--top
6
- // .pull-[xs|sm|md|lg|xl|2xl|3xl]--right
7
- // .pull-[xs|sm|md|lg|xl|2xl|3xl]--bottom
8
- // .pull-[xs|sm|md|lg|xl|2xl|3xl]--left
5
+ // .pull-[xs|sm|md|lg|xl]--top
6
+ // .pull-[xs|sm|md|lg|xl]--right
7
+ // .pull-[xs|sm|md|lg|xl]--bottom
8
+ // .pull-[xs|sm|md|lg|xl]--left
9
9
  // *******************************************************************
10
10
  @each $scale, $size in $size-map {
11
11
  .pull-#{$scale}--top {
@@ -2,13 +2,13 @@
2
2
 
3
3
  // *******************************************************************
4
4
  // Push Utilities
5
- // .push-[xs|sm|md|lg|xl|2xl|3xl]
6
- // .push-[xs|sm|md|lg|xl|2xl|3xl]--top
7
- // .push-[xs|sm|md|lg|xl|2xl|3xl]--right
8
- // .push-[xs|sm|md|lg|xl|2xl|3xl]--bottom
9
- // .push-[xs|sm|md|lg|xl|2xl|3xl]--left
10
- // .push-[xs|sm|md|lg|xl|2xl|3xl]--ends
11
- // .push-[xs|sm|md|lg|xl|2xl|3xl]--sides
5
+ // .push-[xs|sm|md|lg|xl]
6
+ // .push-[xs|sm|md|lg|xl]--top
7
+ // .push-[xs|sm|md|lg|xl]--right
8
+ // .push-[xs|sm|md|lg|xl]--bottom
9
+ // .push-[xs|sm|md|lg|xl]--left
10
+ // .push-[xs|sm|md|lg|xl]--ends
11
+ // .push-[xs|sm|md|lg|xl]--sides
12
12
  // *******************************************************************
13
13
  @each $scale, $size in $size-map {
14
14
  .push-#{$scale} {
@@ -35,11 +35,9 @@ $size-80: 20rem;
35
35
  $size-96: 24rem;
36
36
 
37
37
  $size-map: (
38
- "xs": $size-2,
39
- "sm": $size-4,
40
- "md": $size-6,
41
- "lg": $size-12,
42
- "xl": $size-16,
43
- "2xl": $size-24,
44
- "3xl": $size-32
38
+ "xs": $size-2,
39
+ "sm": $size-4,
40
+ "md": $size-8,
41
+ "lg": $size-16,
42
+ "xl": $size-32
45
43
  );
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Zero
3
- VERSION = "1.1.1"
3
+ VERSION = "1.1.2"
4
4
  end
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sass-zero",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "A CSS framework for rapid UI development based on tailwindcss, miligram and BEM.",
5
5
  "homepage": "https://github.com/lazaronixon/sass-zero",
6
6
  "repository": "lazaronixon/sass-zero",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - lazaronixon