@ohhwells/bridge 0.1.40 → 0.1.42
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/dist/index.cjs +96 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +21 -1
- package/dist/index.d.ts +21 -1
- package/dist/index.js +94 -0
- package/dist/index.js.map +1 -1
- package/dist/styles.css +20 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -269,6 +269,9 @@
|
|
|
269
269
|
.h-10 {
|
|
270
270
|
height: calc(var(--spacing) * 10);
|
|
271
271
|
}
|
|
272
|
+
.h-\[3px\] {
|
|
273
|
+
height: 3px;
|
|
274
|
+
}
|
|
272
275
|
.h-\[36px\] {
|
|
273
276
|
height: 36px;
|
|
274
277
|
}
|
|
@@ -326,6 +329,12 @@
|
|
|
326
329
|
.w-14 {
|
|
327
330
|
width: calc(var(--spacing) * 14);
|
|
328
331
|
}
|
|
332
|
+
.w-\[3px\] {
|
|
333
|
+
width: 3px;
|
|
334
|
+
}
|
|
335
|
+
.w-\[200px\] {
|
|
336
|
+
width: 200px;
|
|
337
|
+
}
|
|
329
338
|
.w-\[var\(--radix-popover-trigger-width\)\] {
|
|
330
339
|
width: var(--radix-popover-trigger-width);
|
|
331
340
|
}
|
|
@@ -888,6 +897,12 @@
|
|
|
888
897
|
.caret-foreground {
|
|
889
898
|
caret-color: var(--color-foreground);
|
|
890
899
|
}
|
|
900
|
+
.opacity-0 {
|
|
901
|
+
opacity: 0%;
|
|
902
|
+
}
|
|
903
|
+
.opacity-40 {
|
|
904
|
+
opacity: 40%;
|
|
905
|
+
}
|
|
891
906
|
.opacity-50 {
|
|
892
907
|
opacity: 50%;
|
|
893
908
|
}
|
|
@@ -1675,6 +1690,11 @@ html[data-ohw-section-picking] [data-ohw-state-toggle] {
|
|
|
1675
1690
|
display: none !important;
|
|
1676
1691
|
pointer-events: none !important;
|
|
1677
1692
|
}
|
|
1693
|
+
.ov-gap-line {
|
|
1694
|
+
background-color: var(--ohw-primary, #0885fe);
|
|
1695
|
+
border-radius: 2px;
|
|
1696
|
+
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
|
|
1697
|
+
}
|
|
1678
1698
|
[data-ohw-navbar-container-chrome] {
|
|
1679
1699
|
--ohw-primary: #0885fe;
|
|
1680
1700
|
--ohw-background: #ffffff;
|