Skip to content

Commit

Permalink
[#123] feat: Design meetingroom detail modal
Browse files Browse the repository at this point in the history
  • Loading branch information
rosieyeon committed Feb 17, 2022
1 parent 02c7f6a commit 0ae3b7c
Show file tree
Hide file tree
Showing 11 changed files with 362 additions and 188 deletions.
54 changes: 44 additions & 10 deletions src/components/modalLarge.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,49 @@ const ModalLarge = (props) => {
<div className={open ? "openModalLarge modalLarge" : "modalLarge"}>
{open ? (
<section>
<header>
{header}
{/* <header> */}
{header}
{/* <svg
className="close"
onClick={close}
width="8"
height="8"
viewBox="0 0 8 8"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<rect
y="0.707153"
width="1"
height="10"
rx="0.5"
transform="rotate(-45 0 0.707153)"
fill="#bababa"
/>
<rect
x="7.07129"
width="1"
height="10"
rx="0.5"
transform="rotate(45 7.07129 0)"
fill="#bababa"
/>
</svg> */}
{/* <img
className="close"
onClick={close}
src="icons/_x-btn.svg"
alt=""
></img> */}
{/* </header> */}
<main>
<svg
className="modal-close-xbtn"
style={{
marginLeft: "94%",
marginTop: "10px",
cursor: "pointer",
}}
className="close"
onClick={close}
width="8"
Expand All @@ -35,14 +75,8 @@ const ModalLarge = (props) => {
fill="#bababa"
/>
</svg>
{/* <img
className="close"
onClick={close}
src="icons/_x-btn.svg"
alt=""
></img> */}
</header>
<main>{props.children}</main>
{props.children}
</main>
</section>
) : null}
</div>
Expand Down
Loading

0 comments on commit 0ae3b7c

Please sign in to comment.