mirror of
https://github.com/Qortal/qapp-core.git
synced 2025-11-02 21:17:04 +00:00
fixes
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "qapp-core",
|
||||
"version": "1.0.44",
|
||||
"version": "1.0.46",
|
||||
"description": "Qortal's core React library with global state, UI components, and utilities",
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
|
||||
@@ -52,7 +52,7 @@ const DynamicGrid: React.FC<DynamicGridProps> = ({
|
||||
}}
|
||||
>
|
||||
{items.map((component, index) => (
|
||||
<div ref={index === 0 ? itemContainerRef : null} key={index} style={{ width: "100%", display: "flex", justifyContent: "center", maxWidth: '400px' }}>
|
||||
<div ref={index === 0 ? itemContainerRef : null} key={index} style={{ width: "100%", display: "flex", justifyContent: "center" }}>
|
||||
{component} {/* ✅ Renders user-provided component */}
|
||||
</div>
|
||||
))}
|
||||
|
||||
@@ -229,7 +229,7 @@ export const MobileControls = ({
|
||||
sx={{
|
||||
width: "100%",
|
||||
position: "absolute",
|
||||
bottom: 0,
|
||||
bottom: '2px',
|
||||
display: "flex",
|
||||
flexDirection: "column",
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user