From 02936bcdabb5e2550b12fa94d435fdbcff348f71 Mon Sep 17 00:00:00 2001 From: rohan09-raj Date: Sun, 21 Aug 2022 20:05:34 +0530 Subject: added modal --- client/src/components/Modal/ExtendedModal.jsx | 89 ++++++++++++++++++++++ .../src/components/Modal/ExtendedModal.module.css | 22 ++++++ client/src/components/Modal/Modal.jsx | 8 +- client/src/components/Modal/Modal.module.css | 9 ++- 4 files changed, 122 insertions(+), 6 deletions(-) create mode 100644 client/src/components/Modal/ExtendedModal.jsx create mode 100644 client/src/components/Modal/ExtendedModal.module.css (limited to 'client/src/components/Modal') diff --git a/client/src/components/Modal/ExtendedModal.jsx b/client/src/components/Modal/ExtendedModal.jsx new file mode 100644 index 0000000..c181b14 --- /dev/null +++ b/client/src/components/Modal/ExtendedModal.jsx @@ -0,0 +1,89 @@ +import React from 'react' +import { Modal, Box, Button } from '@mui/material' +import styles from './ExtendedModal.module.css' +import { Container } from '@mui/system' + +const ExtendedPopUpModal = ({ + title, + description1, + image1, + description2, + image2, + description3, + image3 +}) => { + const style = { + position: 'absolute', + top: '50%', + left: '50%', + transform: 'translate(-50%, -50%)', + width: 1000, + bgcolor: 'background.paper', + borderRadius: '10px', + boxShadow: 24, + p: 4 + } + const [open, setOpen] = React.useState(false) + const handleOpen = () => setOpen(true) + const handleClose = () => setOpen(false) + + return ( +
+ + + +

+ {title} +

+ + + +

{description1}

+
+ +

{description2}

+ +
+ + +

{description3}

+
+
+
+
+
+ ) +} + +export default ExtendedPopUpModal diff --git a/client/src/components/Modal/ExtendedModal.module.css b/client/src/components/Modal/ExtendedModal.module.css new file mode 100644 index 0000000..b1252bd --- /dev/null +++ b/client/src/components/Modal/ExtendedModal.module.css @@ -0,0 +1,22 @@ +.modal { + margin: 0px 15px; + position: absolute; + top: 100px; + right: 250px; +} + +.modal__title { + text-align: center; + margin: 20px 0px 40px; + font-size: var(--font-medium); +} + +.modal__image { + width: 50%; +} + +.modal__content { + text-align: center; + width: 50%; + font-size: var(--font-medium-s); +} diff --git a/client/src/components/Modal/Modal.jsx b/client/src/components/Modal/Modal.jsx index 57cb9bb..679503e 100644 --- a/client/src/components/Modal/Modal.jsx +++ b/client/src/components/Modal/Modal.jsx @@ -38,14 +38,14 @@ const PopUpModal = ({ title, description, image }) => {

{title}

- + -

{description}

+

{description}

diff --git a/client/src/components/Modal/Modal.module.css b/client/src/components/Modal/Modal.module.css index 547445b..fd5e327 100644 --- a/client/src/components/Modal/Modal.module.css +++ b/client/src/components/Modal/Modal.module.css @@ -1,16 +1,21 @@ .modal { margin: 0px 15px; + position: absolute; + top: 100px; + right: 250px; } .modal__title { text-align: center; margin: 20px 0px 40px; + font-size: var(--font-medium-large); } .modal__image { - width: 40%; + width: 50%; } .modal__content { - width: 60%; + width: 50%; + font-size: var(--font-medium-sm); } -- cgit