update pay function
This commit is contained in:
@@ -480,28 +480,33 @@ const KLineChartModal: React.FC<KLineChartModalProps> = ({
|
|||||||
>
|
>
|
||||||
<ModalOverlay
|
<ModalOverlay
|
||||||
bg="blackAlpha.700"
|
bg="blackAlpha.700"
|
||||||
style={{
|
sx={{
|
||||||
position: 'fixed',
|
position: 'fixed !important',
|
||||||
zIndex: overlayZIndex,
|
zIndex: `${overlayZIndex} !important`,
|
||||||
top: 0,
|
top: '0 !important',
|
||||||
left: 0,
|
left: '0 !important',
|
||||||
width: '100vw',
|
width: '100vw !important',
|
||||||
height: '100vh',
|
height: '100vh !important',
|
||||||
|
margin: '0 !important',
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<ModalContent
|
<ModalContent
|
||||||
maxW="90vw"
|
maxW="90vw"
|
||||||
maxH="85vh"
|
maxH="85vh"
|
||||||
bg="#1a1a1a"
|
bg="#1a1a1a"
|
||||||
borderColor="#404040"
|
sx={{
|
||||||
borderWidth="1px"
|
position: 'fixed !important',
|
||||||
style={{
|
zIndex: `${contentZIndex} !important`,
|
||||||
position: 'fixed',
|
top: '50% !important',
|
||||||
zIndex: contentZIndex,
|
left: '50% !important',
|
||||||
top: '50%',
|
transform: 'translate(-50%, -50%) !important',
|
||||||
left: '50%',
|
margin: '0 !important',
|
||||||
transform: 'translate(-50%, -50%)',
|
opacity: '1 !important',
|
||||||
margin: 0,
|
visibility: 'visible !important',
|
||||||
|
pointerEvents: 'auto !important',
|
||||||
|
border: '3px solid #ffd700 !important', // 金色边框,非常明显
|
||||||
|
boxShadow: '0 0 50px rgba(255, 215, 0, 0.8) !important', // 发光效果
|
||||||
|
backgroundColor: '#1a1a1a !important',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<ModalHeader pb={3} borderBottomWidth="1px" borderColor="#404040">
|
<ModalHeader pb={3} borderBottomWidth="1px" borderColor="#404040">
|
||||||
|
|||||||
Reference in New Issue
Block a user