|
@@ -471,7 +471,12 @@ const WheelModal = forwardRef<WheelModalProps, Props>(function RedPacketModal(pr
|
|
|
};
|
|
|
return (
|
|
|
<>
|
|
|
- <Mask visible={detailsVisible} getContainer={null} destroyOnClose={true}>
|
|
|
+ <Mask
|
|
|
+ visible={detailsVisible}
|
|
|
+ getContainer={null}
|
|
|
+ destroyOnClose={true}
|
|
|
+ opacity="thick"
|
|
|
+ >
|
|
|
<div className={"absolute top-[18%] z-50 w-[100%] px-[0.1389rem]"}>
|
|
|
<div className={"rounded-[0.0694rem] bg-[#232327FF] p-[0.0694rem]"}>
|
|
|
<div className={"flex items-center"}>
|
|
@@ -495,7 +500,7 @@ const WheelModal = forwardRef<WheelModalProps, Props>(function RedPacketModal(pr
|
|
|
</div>
|
|
|
</Mask>
|
|
|
|
|
|
- <Mask visible={visible} destroyOnClose={true} getContainer={null}>
|
|
|
+ <Mask visible={visible} destroyOnClose={true} getContainer={null} opacity="thick">
|
|
|
<div
|
|
|
className={"absolute right-[0.2083rem] top-[18%] z-50"}
|
|
|
onClick={() => setVisible(false)}
|