@marimo-team/frontend 0.23.16-dev50 → 0.23.16-dev51
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.html
CHANGED
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
<marimo-server-token data-token="{{ server_token }}" hidden></marimo-server-token>
|
|
67
67
|
<!-- /TODO -->
|
|
68
68
|
<title>{{ title }}</title>
|
|
69
|
-
<script type="module" crossorigin src="./assets/index-
|
|
69
|
+
<script type="module" crossorigin src="./assets/index-CrEgp1mR.js"></script>
|
|
70
70
|
<link rel="modulepreload" crossorigin href="./assets/preload-helper-TXkS1QI3.js">
|
|
71
71
|
<link rel="modulepreload" crossorigin href="./assets/objects-BlG0ZrO0.js">
|
|
72
72
|
<link rel="modulepreload" crossorigin href="./assets/chunk-LvLJmgfZ.js">
|
package/package.json
CHANGED
|
@@ -53,9 +53,11 @@ export const ViewerBanner = () => {
|
|
|
53
53
|
|
|
54
54
|
// A zero-height sticky row pins the banner to the top-left of the notebook
|
|
55
55
|
// scroll area, so it stays visible while scrolling without reserving space in
|
|
56
|
-
// the flow.
|
|
56
|
+
// the flow. Because it reserves no space, the banner visually overlaps the
|
|
57
|
+
// app header (sticky at z-50); setting the banner to z-100 keeps the header
|
|
58
|
+
// from covering the button and swallowing its clicks.
|
|
57
59
|
return (
|
|
58
|
-
<div className="sticky top-2 left-2 z-
|
|
60
|
+
<div className="sticky top-2 left-2 z-100 h-0 ml-2 w-fit print:hidden">
|
|
59
61
|
<Banner
|
|
60
62
|
kind="info"
|
|
61
63
|
className="flex items-center gap-2 rounded px-2 py-1 text-xs shadow-sm"
|