Commit 12e54772 by G

rounded container for payment options

parent 9f3844dd
...@@ -98,7 +98,12 @@ const paymentOptionCardWidth = screenWidth / 2 - 30; ...@@ -98,7 +98,12 @@ const paymentOptionCardWidth = screenWidth / 2 - 30;
const paymentOptionCardHeight = paymentOptionCardWidth * 0.65; const paymentOptionCardHeight = paymentOptionCardWidth * 0.65;
const PaymentOptionContainer = ({ children }: { children: React.ReactNode }) => { const PaymentOptionContainer = ({ children }: { children: React.ReactNode }) => {
return ( return (
<Box width={paymentOptionCardWidth} height={paymentOptionCardHeight}> <Box
width={paymentOptionCardWidth}
height={paymentOptionCardHeight}
borderRadius={30}
overflow={"hidden"}
>
{children} {children}
</Box> </Box>
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment