claudeup 3.6.1 → 3.6.2
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/package.json
CHANGED
|
@@ -50,7 +50,7 @@ export function ModalContainer() {
|
|
|
50
50
|
return null;
|
|
51
51
|
}
|
|
52
52
|
};
|
|
53
|
-
// Center the modal on screen
|
|
54
|
-
return (_jsx("box", { position: "absolute", width: "100%", height: "100%", justifyContent: "center", alignItems: "center",
|
|
53
|
+
// Center the modal on screen
|
|
54
|
+
return (_jsx("box", { position: "absolute", width: "100%", height: "100%", justifyContent: "center", alignItems: "center", children: renderModal() }));
|
|
55
55
|
}
|
|
56
56
|
export default ModalContainer;
|
|
@@ -87,7 +87,7 @@ export function ModalContainer() {
|
|
|
87
87
|
}
|
|
88
88
|
};
|
|
89
89
|
|
|
90
|
-
// Center the modal on screen
|
|
90
|
+
// Center the modal on screen
|
|
91
91
|
return (
|
|
92
92
|
<box
|
|
93
93
|
position="absolute"
|
|
@@ -95,7 +95,6 @@ export function ModalContainer() {
|
|
|
95
95
|
height="100%"
|
|
96
96
|
justifyContent="center"
|
|
97
97
|
alignItems="center"
|
|
98
|
-
backgroundColor="#1a1a2e"
|
|
99
98
|
>
|
|
100
99
|
{renderModal()}
|
|
101
100
|
</box>
|