@ohhwells/bridge 0.1.46 → 0.1.47
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 +192 -39
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +192 -39
- package/dist/index.js.map +1 -1
- package/dist/styles.css +12 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -80,6 +80,12 @@
|
|
|
80
80
|
.pointer-events-none {
|
|
81
81
|
pointer-events: none;
|
|
82
82
|
}
|
|
83
|
+
.collapse {
|
|
84
|
+
visibility: collapse;
|
|
85
|
+
}
|
|
86
|
+
.invisible {
|
|
87
|
+
visibility: hidden;
|
|
88
|
+
}
|
|
83
89
|
.visible {
|
|
84
90
|
visibility: visible;
|
|
85
91
|
}
|
|
@@ -233,6 +239,9 @@
|
|
|
233
239
|
.inline-flex {
|
|
234
240
|
display: inline-flex;
|
|
235
241
|
}
|
|
242
|
+
.table {
|
|
243
|
+
display: table;
|
|
244
|
+
}
|
|
236
245
|
.size-4 {
|
|
237
246
|
width: calc(var(--spacing) * 4);
|
|
238
247
|
height: calc(var(--spacing) * 4);
|
|
@@ -895,6 +904,9 @@
|
|
|
895
904
|
.italic {
|
|
896
905
|
font-style: italic;
|
|
897
906
|
}
|
|
907
|
+
.line-through {
|
|
908
|
+
text-decoration-line: line-through;
|
|
909
|
+
}
|
|
898
910
|
.underline {
|
|
899
911
|
text-decoration-line: underline;
|
|
900
912
|
}
|