sass-zero 1.0.26 → 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
  SHA256:
3
- metadata.gz: 39252448e6facfdbde7c481a9e69b795309b94b44624bb0ee9d54b569398ebec
4
- data.tar.gz: f57e934a2df042a505e0fb0bd48dc6d44f70f30e480be6a7017050e05578e7ae
3
+ metadata.gz: d65cb7f394fe617aee3d6949e3fb93966d51c48db2fd0a816b5e4d141820dcdf
4
+ data.tar.gz: 6ce70d29fe014d896e36f4459cfe6e12b5097565a60a06633e0a1f23353a22f5
5
5
  SHA512:
6
- metadata.gz: fe1bb57d654a56214ef6cb7c7b3ecc5aee149344c372fbc64ebb11a1efac5272592a1850e126b859fc060c9a6748eea8289f08f171d38e332a5f3731e1477c56
7
- data.tar.gz: 5be54511e90a5f579fa13e2d15a7b4e2213434f7b4feba069c2fc65aef48e12e2a89add71dfd43eedbc9ca84661148b1aa7387e2bce36fab14fd0dd875ad89b0
6
+ metadata.gz: d22c280bc407b03aebec8706a862cd2b613366fba76b7e7566cb2a6219a33bb56c10521913b790c64a37340db28475d2775cf3f1f9421d79f7a8638538d9a52c
7
+ data.tar.gz: 1d1ba532cc250ed3501519da3a6a8f49308b8166ea48a6893d1aa751434a19f58b8be1ffdd1dad4fb4abd5a7dc7911c40f979ffa9764b22270a63b9cb93b7f61
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sass-zero (1.0.26)
4
+ sass-zero (1.1.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -42,7 +42,7 @@ Developers should be able to produce your own design, [Refactoring UI](https://r
42
42
  - [Filters](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/filters.scss)
43
43
  - [Flex](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/flex.scss)
44
44
  - [Grid](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/grid.scss)
45
- - [Spacing](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/spacing.scss)
45
+ - [Sizing](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/sizing.scss)
46
46
  - [Transform](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/transform.scss)
47
47
  - [Transition](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/transition.scss)
48
48
  - [Typography](https://github.com/lazaronixon/sass-zero/blob/master/app/assets/stylesheets/sass-zero/variables/typography.scss)
@@ -1,6 +1,6 @@
1
1
  @import "variables/border";
2
2
  @import "variables/effects";
3
- @import "variables/spacing";
3
+ @import "variables/sizing";
4
4
  @import "variables/zindex";
5
5
 
6
6
  @mixin antialiased {
@@ -1,5 +1,5 @@
1
1
  @import "../variables/breakpoints";
2
- @import "../variables/spacing";
2
+ @import "../variables/sizing";
3
3
 
4
4
  .flex {
5
5
  display: flex;
@@ -1,4 +1,4 @@
1
- @import "../variables/spacing";
1
+ @import "../variables/sizing";
2
2
  @import "../variables/border";
3
3
 
4
4
  .list--unindented {
@@ -1,4 +1,4 @@
1
- @import "../variables/spacing";
1
+ @import "../variables/sizing";
2
2
 
3
3
  // *******************************************************************
4
4
  // Pad Utilities
@@ -1,4 +1,4 @@
1
- @import "../variables/spacing";
1
+ @import "../variables/sizing";
2
2
 
3
3
  // *******************************************************************
4
4
  // Pull Utilities
@@ -1,4 +1,4 @@
1
- @import "../variables/spacing";
1
+ @import "../variables/sizing";
2
2
 
3
3
  // *******************************************************************
4
4
  // Push Utilities
@@ -1,5 +1,5 @@
1
1
  @import "../variables/typography";
2
- @import "../variables/spacing";
2
+ @import "../variables/sizing";
3
3
  @import "../mixins";
4
4
 
5
5
  .txt--normal {
@@ -0,0 +1,45 @@
1
+ // *******************************************************************
2
+ // Default sizing scale
3
+ // By default, sass-zero includes a generous and comprehensive numeric sizing scale.
4
+ // *******************************************************************
5
+ $size-px: 1px;
6
+ $size-0: 0;
7
+ $size-1: 0.25rem;
8
+ $size-2: 0.5rem;
9
+ $size-3: 0.75rem;
10
+ $size-4: 1rem;
11
+ $size-5: 1.25rem;
12
+ $size-6: 1.5rem;
13
+ $size-7: 1.75rem;
14
+ $size-8: 2rem;
15
+ $size-9: 2.25rem;
16
+ $size-10: 2.5rem;
17
+ $size-11: 2.75rem;
18
+ $size-12: 3rem;
19
+ $size-14: 3.5rem;
20
+ $size-16: 4rem;
21
+ $size-20: 5rem;
22
+ $size-24: 6rem;
23
+ $size-28: 7rem;
24
+ $size-32: 8rem;
25
+ $size-36: 9rem;
26
+ $size-40: 10rem;
27
+ $size-44: 11rem;
28
+ $size-48: 12rem;
29
+ $size-52: 13rem;
30
+ $size-56: 14rem;
31
+ $size-60: 15rem;
32
+ $size-64: 16rem;
33
+ $size-72: 18rem;
34
+ $size-80: 20rem;
35
+ $size-96: 24rem;
36
+
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
45
+ );
@@ -5,7 +5,7 @@
5
5
  @import "variables/filters";
6
6
  @import "variables/flex";
7
7
  @import "variables/grid";
8
- @import "variables/spacing";
8
+ @import "variables/sizing";
9
9
  @import "variables/transition";
10
10
  @import "variables/transform";
11
11
  @import "variables/typography";
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Zero
3
- VERSION = "1.0.26"
3
+ VERSION = "1.1.0"
4
4
  end
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sass-zero",
3
- "version": "1.0.26",
3
+ "version": "1.1.0",
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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.26
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - lazaronixon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-13 00:00:00.000000000 Z
11
+ date: 2022-08-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -53,7 +53,7 @@ files:
53
53
  - app/assets/stylesheets/sass-zero/variables/flex.scss
54
54
  - app/assets/stylesheets/sass-zero/variables/grid.scss
55
55
  - app/assets/stylesheets/sass-zero/variables/height.scss
56
- - app/assets/stylesheets/sass-zero/variables/spacing.scss
56
+ - app/assets/stylesheets/sass-zero/variables/sizing.scss
57
57
  - app/assets/stylesheets/sass-zero/variables/transform.scss
58
58
  - app/assets/stylesheets/sass-zero/variables/transition.scss
59
59
  - app/assets/stylesheets/sass-zero/variables/typography.scss
@@ -1,46 +0,0 @@
1
- // *******************************************************************
2
- // Default spacing scale
3
- // By default, Tailwind includes a generous and comprehensive numeric spacing scale.
4
- // Use as padding, margin, width, height, translate, etc...
5
- // *******************************************************************
6
- $size-px: 1px;
7
- $size-0: 0;
8
- $size-1: 0.25rem;
9
- $size-2: 0.5rem;
10
- $size-3: 0.75rem;
11
- $size-4: 1rem;
12
- $size-5: 1.25rem;
13
- $size-6: 1.5rem;
14
- $size-7: 1.75rem;
15
- $size-8: 2rem;
16
- $size-9: 2.25rem;
17
- $size-10: 2.5rem;
18
- $size-11: 2.75rem;
19
- $size-12: 3rem;
20
- $size-14: 3.5rem;
21
- $size-16: 4rem;
22
- $size-20: 5rem;
23
- $size-24: 6rem;
24
- $size-28: 7rem;
25
- $size-32: 8rem;
26
- $size-36: 9rem;
27
- $size-40: 10rem;
28
- $size-44: 11rem;
29
- $size-48: 12rem;
30
- $size-52: 13rem;
31
- $size-56: 14rem;
32
- $size-60: 15rem;
33
- $size-64: 16rem;
34
- $size-72: 18rem;
35
- $size-80: 20rem;
36
- $size-96: 24rem;
37
-
38
- $size-map: (
39
- "xs": $size-2,
40
- "sm": $size-4,
41
- "md": $size-6,
42
- "lg": $size-12,
43
- "xl": $size-16,
44
- "2xl": $size-24,
45
- "3xl": $size-32
46
- );