@ohhwells/bridge 0.1.34-next.44 → 0.1.35
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/README.md +0 -12
- package/dist/index.cjs +21 -105
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +45 -129
- package/dist/index.js.map +1 -1
- package/dist/styles.css +18 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -22,6 +22,10 @@
|
|
|
22
22
|
--text-lg--line-height: 28px;
|
|
23
23
|
--text-xl: 20px;
|
|
24
24
|
--text-xl--line-height: 28px;
|
|
25
|
+
--text-4xl: 36px;
|
|
26
|
+
--text-4xl--line-height: 40px;
|
|
27
|
+
--text-5xl: 48px;
|
|
28
|
+
--text-5xl--line-height: 1;
|
|
25
29
|
--font-weight-normal: 400;
|
|
26
30
|
--font-weight-medium: 500;
|
|
27
31
|
--font-weight-semibold: 600;
|
|
@@ -54,6 +58,8 @@
|
|
|
54
58
|
--color-border: var(--ohw-border, #e2e8f0);
|
|
55
59
|
--color-input: var(--ohw-input, #e2e8f0);
|
|
56
60
|
--color-ring: var(--ohw-ring, #64748b);
|
|
61
|
+
--text-5xl--letter-spacing: -0.025em;
|
|
62
|
+
--text-4xl--letter-spacing: -0.025em;
|
|
57
63
|
--text-xl--letter-spacing: -0.025em;
|
|
58
64
|
--text-lg--letter-spacing: 0em;
|
|
59
65
|
--text-base--letter-spacing: 0em;
|
|
@@ -675,6 +681,11 @@
|
|
|
675
681
|
.font-sans {
|
|
676
682
|
font-family: var(--font-sans);
|
|
677
683
|
}
|
|
684
|
+
.text-4xl {
|
|
685
|
+
font-size: var(--text-4xl);
|
|
686
|
+
line-height: var(--tw-leading, var(--text-4xl--line-height));
|
|
687
|
+
letter-spacing: var(--tw-tracking, var(--text-4xl--letter-spacing));
|
|
688
|
+
}
|
|
678
689
|
.text-base {
|
|
679
690
|
font-size: var(--text-base);
|
|
680
691
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
@@ -1353,6 +1364,13 @@
|
|
|
1353
1364
|
padding-block: calc(var(--spacing) * 20);
|
|
1354
1365
|
}
|
|
1355
1366
|
}
|
|
1367
|
+
.sm\:text-5xl {
|
|
1368
|
+
@media (width >= 40rem) {
|
|
1369
|
+
font-size: var(--text-5xl);
|
|
1370
|
+
line-height: var(--tw-leading, var(--text-5xl--line-height));
|
|
1371
|
+
letter-spacing: var(--tw-tracking, var(--text-5xl--letter-spacing));
|
|
1372
|
+
}
|
|
1373
|
+
}
|
|
1356
1374
|
.md\:w-md {
|
|
1357
1375
|
@media (width >= 48rem) {
|
|
1358
1376
|
width: var(--container-md);
|