@stainless-api/ui-primitives 0.1.0-beta.15 → 0.1.0-beta.17
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.
- package/CHANGELOG.md +12 -0
- package/package.json +1 -1
- package/src/styles/typography.css +14 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @stainless-api/ui-primitives
|
|
2
2
|
|
|
3
|
+
## 0.1.0-beta.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1517484: fixing font loading, updating nav bar height
|
|
8
|
+
|
|
9
|
+
## 0.1.0-beta.16
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 9cdb24d: Update pagination components, fix search modal
|
|
14
|
+
|
|
3
15
|
## 0.1.0-beta.15
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -44,12 +44,21 @@ body {
|
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
.stl-ui-prose {
|
|
47
|
+
letter-spacing: -0.01em;
|
|
48
|
+
font-weight: 400;
|
|
49
|
+
line-height: var(--stl-ui-typography-line-height);
|
|
50
|
+
font-size: var(--stl-ui-typography-text-body);
|
|
51
|
+
color: var(--stl-ui-foreground-secondary);
|
|
52
|
+
|
|
53
|
+
:where(.stl-ui-not-prose) {
|
|
54
|
+
letter-spacing: initial;
|
|
55
|
+
font-weight: initial;
|
|
56
|
+
line-height: initial;
|
|
57
|
+
font-size: initial;
|
|
58
|
+
color: initial;
|
|
59
|
+
}
|
|
60
|
+
|
|
47
61
|
:where(p):not(.stl-ui-not-prose *) {
|
|
48
|
-
color: var(--stl-ui-foreground-secondary);
|
|
49
|
-
font-weight: 400;
|
|
50
|
-
line-height: var(--stl-ui-typography-line-height);
|
|
51
|
-
letter-spacing: -0.01em;
|
|
52
|
-
font-size: var(--stl-ui-typography-text-body);
|
|
53
62
|
margin-top: 16px;
|
|
54
63
|
}
|
|
55
64
|
|