cleek 1.8.0 → 1.8.4

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.
@@ -0,0 +1,2 @@
1
+ .w-half
2
+ width 50%
@@ -0,0 +1,10 @@
1
+ .items-start
2
+ align-items flex-start
3
+ .items-end
4
+ align-items flex-end
5
+ .items-center
6
+ align-items center
7
+ .items-baseline
8
+ align-items baseline
9
+ .items-stretch
10
+ align-items stretch
@@ -0,0 +1,42 @@
1
+ .block
2
+ display block
3
+ .inline-block
4
+ display inline-block
5
+ .inline
6
+ display inline
7
+ .flex
8
+ display flex
9
+ .inline-flex
10
+ display inline-flex
11
+ .table
12
+ display table
13
+ .inline-table
14
+ display inline-table
15
+ .table-caption
16
+ display table-caption
17
+ .table-cell
18
+ display table-cell
19
+ .table-column
20
+ display table-column
21
+ .table-column-group
22
+ display table-column-group
23
+ .table-footer-group
24
+ display table-footer-group
25
+ .table-header-group
26
+ display table-header-group
27
+ .table-row-group
28
+ display table-row-group
29
+ .table-row
30
+ display table-row
31
+ .flow-root
32
+ display flow-root
33
+ .grid
34
+ display grid
35
+ .inline-grid
36
+ display inline-grid
37
+ .contents
38
+ display contents
39
+ .list-item
40
+ display list-item
41
+ .hidden
42
+ display none
@@ -1,3 +1,7 @@
1
+ @import './display';
1
2
  @import './margin';
2
3
  @import './padding';
3
- @import './general';
4
+ @import './text-align';
5
+ @import './width';
6
+ @import './.custom';
7
+ @import './justify-content';
@@ -0,0 +1,12 @@
1
+ .justify-start
2
+ justify-content flex-start
3
+ .justify-end
4
+ justify-content flex-end
5
+ .justify-center
6
+ justify-content center
7
+ .justify-between
8
+ justify-content space-between
9
+ .justify-around
10
+ justify-content space-around
11
+ .justify-evenly
12
+ justify-content space-evenly
@@ -0,0 +1,8 @@
1
+ .text-left
2
+ text-align left
3
+ .text-center
4
+ text-align center
5
+ .text-right
6
+ text-align right
7
+ .text-justify
8
+ text-align justify
@@ -0,0 +1,68 @@
1
+ .w-0
2
+ width 0px
3
+ .w-px
4
+ width 1px
5
+ .w-auto
6
+ width auto
7
+ .w-1_2
8
+ width 50%
9
+ .w-1_3
10
+ width 33.333333%
11
+ .w-2_3
12
+ width 66.666667%
13
+ .w-1_4
14
+ width 25%
15
+ .w-2_4
16
+ width 50%
17
+ .w-3_4
18
+ width 75%
19
+ .w-1_5
20
+ width 20%
21
+ .w-2_5
22
+ width 40%
23
+ .w-3_5
24
+ width 60%
25
+ .w-4_5
26
+ width 80%
27
+ .w-1_6
28
+ width 16.666667%
29
+ .w-2_6
30
+ width 33.333333%
31
+ .w-3_6
32
+ width 50%
33
+ .w-4_6
34
+ width 66.666667%
35
+ .w-5_6
36
+ width 83.333333%
37
+ .w-1_12
38
+ width 8.333333%
39
+ .w-2_12
40
+ width 16.666667%
41
+ .w-3_12
42
+ width 25%
43
+ .w-4_12
44
+ width 33.333333%
45
+ .w-5_12
46
+ width 41.666667%
47
+ .w-6_12
48
+ width 50%
49
+ .w-7_12
50
+ width 58.333333%
51
+ .w-8_12
52
+ width 66.666667%
53
+ .w-9_12
54
+ width 75%
55
+ .w-10_12
56
+ width 83.333333%
57
+ .w-11_12
58
+ width 91.666667%
59
+ .w-full
60
+ width 100%
61
+ .w-screen
62
+ width 100vw
63
+ .w-min
64
+ width min-content
65
+ .w-max
66
+ width max-content
67
+ .w-fit
68
+ width fit-content