@jsenv/navi 0.11.3 → 0.11.5
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/jsenv_navi.js +8 -6
- package/dist/jsenv_navi.js.map +3 -3
- package/package.json +2 -2
package/dist/jsenv_navi.js
CHANGED
|
@@ -9369,22 +9369,24 @@ const RectangleLoadingSvg = ({
|
|
|
9369
9369
|
installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
9370
9370
|
.navi_inline_wrapper {
|
|
9371
9371
|
position: relative;
|
|
9372
|
-
width: fit-content;
|
|
9373
9372
|
display: inline-flex;
|
|
9373
|
+
width: fit-content;
|
|
9374
9374
|
height: fit-content;
|
|
9375
|
+
/* min-width: 100%; */
|
|
9376
|
+
/* min-height: 100%; */
|
|
9375
9377
|
border-radius: inherit;
|
|
9376
9378
|
cursor: inherit;
|
|
9377
9379
|
}
|
|
9378
9380
|
|
|
9379
9381
|
.navi_loading_rectangle_wrapper {
|
|
9380
|
-
pointer-events: none;
|
|
9381
9382
|
position: absolute;
|
|
9382
|
-
z-index: 1;
|
|
9383
|
-
opacity: 0;
|
|
9384
9383
|
top: var(--rectangle-top, 0);
|
|
9385
|
-
left: var(--rectangle-left, 0);
|
|
9386
|
-
bottom: var(--rectangle-bottom, 0);
|
|
9387
9384
|
right: var(--rectangle-right, 0);
|
|
9385
|
+
bottom: var(--rectangle-bottom, 0);
|
|
9386
|
+
left: var(--rectangle-left, 0);
|
|
9387
|
+
z-index: 1;
|
|
9388
|
+
opacity: 0;
|
|
9389
|
+
pointer-events: none;
|
|
9388
9390
|
}
|
|
9389
9391
|
.navi_loading_rectangle_wrapper[data-visible] {
|
|
9390
9392
|
opacity: 1;
|