Remove Card from recieve view.

This commit is contained in:
Arne Pedersen
2022-12-29 00:24:10 +01:00
parent 69822f45f1
commit 02aaeaa272

View File

@@ -72,7 +72,6 @@ export const ReceiveView = ({ keys }: ReceiveViewProps) => {
return (
<div className="max-w-[64rem] m-auto">
<Card>
<div className="p-10">
<div className="flex flex-col lg:flex-row">
{peerKey === "" && (
@@ -108,8 +107,7 @@ export const ReceiveView = ({ keys }: ReceiveViewProps) => {
gravity: "bottom",
position: "center",
stopOnFocus: false,
className:
"flex fixed bottom-0 bg-custom-black p-2 rounded left-[45%] z-50",
className: "flex fixed bottom-0 bg-custom-black p-2 rounded left-[45%] z-50",
}).showToast()
}}
>
@@ -121,7 +119,6 @@ export const ReceiveView = ({ keys }: ReceiveViewProps) => {
</div>
<div>{peerKey !== "" && <Message message={message} onChange={onMessageChange} />}</div>
</div>
</Card>
</div>
)
}