@marimo-team/islands 0.23.12-dev21 → 0.23.12-dev24
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/{code-visibility-DBnAQPtB.js → code-visibility-Dvp9rEsU.js} +1 -1
- package/dist/main.js +3 -3
- package/dist/{reveal-component-DIzKQ1NS.js → reveal-component-CEXFjrHc.js} +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/editor/app-container.tsx +3 -1
- package/src/components/editor/renderers/vertical-layout/vertical-layout-wrapper.tsx +2 -2
package/package.json
CHANGED
|
@@ -48,7 +48,9 @@ export const AppContainer: React.FC<PropsWithChildren<Props>> = ({
|
|
|
48
48
|
"bg-background w-full h-full text-textColor",
|
|
49
49
|
"flex flex-col overflow-y-auto",
|
|
50
50
|
width === "full" && "config-width-full",
|
|
51
|
-
width === "columns"
|
|
51
|
+
width === "columns"
|
|
52
|
+
? "overflow-x-auto"
|
|
53
|
+
: "overflow-x-auto sm:overflow-x-hidden",
|
|
52
54
|
"print:height-fit",
|
|
53
55
|
)}
|
|
54
56
|
>
|
|
@@ -32,9 +32,9 @@ export const VerticalLayoutWrapper: React.FC<PropsWithChildren<Props>> = ({
|
|
|
32
32
|
// This padding needs to be the same from above to be correctly applied
|
|
33
33
|
"pb-24 sm:pb-12",
|
|
34
34
|
appConfig.width === "compact" &&
|
|
35
|
-
"max-w-(--content-width) min-w-[400px]",
|
|
35
|
+
"max-w-(--content-width) sm:min-w-[400px]",
|
|
36
36
|
appConfig.width === "medium" &&
|
|
37
|
-
"max-w-(--content-width-medium) min-w-[400px]",
|
|
37
|
+
"max-w-(--content-width-medium) sm:min-w-[400px]",
|
|
38
38
|
appConfig.width === "columns" && "w-fit",
|
|
39
39
|
appConfig.width === "full" && "max-w-full",
|
|
40
40
|
// Hide the cells for a fake loading effect, to avoid flickering
|