@infonomic/uikit 2.4.0 → 2.6.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.
|
@@ -25,8 +25,7 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.table-header-D1lP7m {
|
|
28
|
-
font-size: var(--font-size-
|
|
29
|
-
text-transform: uppercase;
|
|
28
|
+
font-size: var(--font-size-sm);
|
|
30
29
|
background-color: var(--canvas-50);
|
|
31
30
|
}
|
|
32
31
|
|
|
@@ -42,9 +41,8 @@
|
|
|
42
41
|
.table-heading-cell-gB6ryy {
|
|
43
42
|
white-space: nowrap;
|
|
44
43
|
padding: var(--spacing-2) var(--spacing-2);
|
|
45
|
-
font-size: var(--font-size-sm);
|
|
46
|
-
text-transform: uppercase;
|
|
47
44
|
background-color: var(--canvas-50);
|
|
45
|
+
font-size: .975rem;
|
|
48
46
|
}
|
|
49
47
|
|
|
50
48
|
.table-cell-VRgkzQ {
|
|
@@ -57,8 +55,7 @@
|
|
|
57
55
|
}
|
|
58
56
|
|
|
59
57
|
.table-footer-JabMFD {
|
|
60
|
-
font-size: var(--font-size-
|
|
61
|
-
text-transform: uppercase;
|
|
58
|
+
font-size: var(--font-size-sm);
|
|
62
59
|
background-color: var(--canvas-100);
|
|
63
60
|
}
|
|
64
61
|
|
package/package.json
CHANGED
|
@@ -20,9 +20,19 @@ export const Avatar = (): React.JSX.Element => (
|
|
|
20
20
|
maxWidth: '300px',
|
|
21
21
|
marginBottom: '24px',
|
|
22
22
|
display: 'flex',
|
|
23
|
+
gap: '24px',
|
|
24
|
+
alignItems: 'center',
|
|
23
25
|
justifyContent: 'center',
|
|
24
26
|
}}
|
|
25
27
|
>
|
|
26
|
-
<
|
|
28
|
+
<div style={{ height: '28px', width: '28px' }}>
|
|
29
|
+
<AvatarComponent initials="AB" />
|
|
30
|
+
</div>
|
|
31
|
+
<div style={{ height: '34px', width: '34px' }}>
|
|
32
|
+
<AvatarComponent initials="AB" />
|
|
33
|
+
</div>
|
|
34
|
+
<div style={{ height: '40px', width: '40px' }}>
|
|
35
|
+
<AvatarComponent initials="AB" />
|
|
36
|
+
</div>
|
|
27
37
|
</div>
|
|
28
38
|
)
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
|
|
30
30
|
/* 'text-xs text-gray-700 uppercase bg-canvas-100 dark:bg-canvas-700 dark:text-gray-400', */
|
|
31
31
|
.table-header {
|
|
32
|
-
font-size: var(--font-size-
|
|
33
|
-
text-transform: uppercase;
|
|
32
|
+
font-size: var(--font-size-sm);
|
|
33
|
+
/* text-transform: uppercase; */
|
|
34
34
|
background-color: var(--canvas-50);
|
|
35
35
|
}
|
|
36
36
|
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
.table-heading-cell {
|
|
49
49
|
white-space: nowrap;
|
|
50
50
|
padding: var(--spacing-2) var(--spacing-2);
|
|
51
|
-
font-size:
|
|
52
|
-
text-transform: uppercase;
|
|
51
|
+
font-size: 0.975rem; /* 15.6px */
|
|
52
|
+
/* text-transform: uppercase; */
|
|
53
53
|
background-color: var(--canvas-50);
|
|
54
54
|
}
|
|
55
55
|
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
|
|
66
66
|
/* 'text-xs text-gray-700 uppercase bg-canvas-100 dark:bg-canvas-700 dark:text-gray-400', */
|
|
67
67
|
.table-footer {
|
|
68
|
-
font-size: var(--font-size-
|
|
69
|
-
text-transform: uppercase;
|
|
68
|
+
font-size: var(--font-size-sm);
|
|
69
|
+
/* text-transform: uppercase; */
|
|
70
70
|
background-color: var(--canvas-100);
|
|
71
71
|
}
|
|
72
72
|
|