pangea-lib 2.11.634 → 2.11.635
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,59 @@
|
|
|
1
|
+
break-word()
|
|
2
|
+
word-break break-word
|
|
3
|
+
word-wrap break-word
|
|
4
|
+
|
|
5
|
+
padding-y()
|
|
6
|
+
padding-top arguments[0]
|
|
7
|
+
if length(arguments) == 1
|
|
8
|
+
padding-bottom arguments[0]
|
|
9
|
+
else
|
|
10
|
+
padding-bottom arguments[1]
|
|
11
|
+
|
|
12
|
+
padding-x()
|
|
13
|
+
padding-left arguments[0]
|
|
14
|
+
if length(arguments) == 1
|
|
15
|
+
padding-right arguments[0]
|
|
16
|
+
else
|
|
17
|
+
padding-right arguments[1]
|
|
18
|
+
|
|
19
|
+
margin-y()
|
|
20
|
+
margin-top arguments[0]
|
|
21
|
+
if length(arguments) == 1
|
|
22
|
+
margin-bottom arguments[0]
|
|
23
|
+
else
|
|
24
|
+
margin-bottom arguments[1]
|
|
25
|
+
|
|
26
|
+
margin-x()
|
|
27
|
+
margin-left arguments[0]
|
|
28
|
+
if length(arguments) == 1
|
|
29
|
+
margin-right arguments[0]
|
|
30
|
+
else
|
|
31
|
+
margin-right arguments[1]
|
|
32
|
+
|
|
33
|
+
size($size-height, $size-width = false)
|
|
34
|
+
height $size-height
|
|
35
|
+
min-height $size-height
|
|
36
|
+
if $size-width
|
|
37
|
+
width $size-width
|
|
38
|
+
min-width $size-width
|
|
39
|
+
else
|
|
40
|
+
width $size-height
|
|
41
|
+
min-width $size-height
|
|
42
|
+
|
|
43
|
+
size-rounded($size)
|
|
44
|
+
size($size)
|
|
45
|
+
border-radius 100%
|
|
46
|
+
|
|
47
|
+
shadow($blur = 0.5em, $color = s('rgba(var(--pga-color-text-first-rgb), 0.1)'))
|
|
48
|
+
box-shadow 0 0 $blur $color
|
|
49
|
+
|
|
50
|
+
flex($flex-direction = row, $justify-content = flex-start, $align-items = stretch, $gap = 0, $flex-wrap = nowrap)
|
|
51
|
+
display flex
|
|
52
|
+
flex-direction $flex-direction
|
|
53
|
+
justify-content $justify-content
|
|
54
|
+
align-items $align-items
|
|
55
|
+
gap $gap
|
|
56
|
+
flex-wrap $flex-wrap
|
|
57
|
+
|
|
58
|
+
flex-center()
|
|
59
|
+
flex(row, center, center)
|
package/package.json
CHANGED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
@require './breakpoints.styl'
|
|
2
|
-
|
|
3
|
-
html
|
|
4
|
-
font-size 92%
|
|
5
|
-
@media (max-width: $breakpoint-large-devices)
|
|
6
|
-
font-size 89%
|
|
7
|
-
@media (max-width: $breakpoint-medium-devices)
|
|
8
|
-
font-size 86%
|
|
9
|
-
@media (max-width: $breakpoint-small-devices)
|
|
10
|
-
font-size 83%
|
|
11
|
-
@media (max-width: $breakpoint-extra-small-devices)
|
|
12
|
-
font-size 80%
|