-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a0dd92
commit 0dd8d64
Showing
6 changed files
with
73 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
const MeetingRoomProjectBox = () => { | ||
return ( | ||
<div className="flex"> | ||
{/* 프로젝트 넘버 */} | ||
<div className="w-[80px] flex "> | ||
<span className="text-[50px] text-main-green02 font-notoTC mt-0"> | ||
10 | ||
</span> | ||
</div> | ||
<div | ||
className="bg-white border border-[#CAD2CB] w-full h-[70px] flex | ||
gap-5 items-center px-5 font-bold " | ||
> | ||
<div className="flex justify-between items-center w-full px-5"> | ||
{/* 프로젝트 명, 미팅룸 명 */} | ||
<div className="flex flex-col gap-[10px]"> | ||
<span className="font-bold">프로젝트 명</span> | ||
<span className="font-bold text-[18px]">미팅룸 명</span> | ||
</div> | ||
<div className="flex flex-col items-end"> | ||
<span className="font-bold text-[14px]">새로운 메시지</span> | ||
<span className="font-bold text-[14px]">+99</span> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default MeetingRoomProjectBox; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lacquer&family=Noto+Sans+TC:[email protected]&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); | ||
@import "tailwindcss"; | ||
@plugin 'tailwind-scrollbar'; | ||
|
||
|
@@ -22,4 +23,10 @@ | |
--color-black01: #212121; | ||
--color-gray01: #AFAFAF; | ||
--color-gray02: #E8E8E8; | ||
--font-notoTC: "Noto Sans TC", "sans-serif"; | ||
} | ||
|
||
|
||
.font-notoTC { | ||
font-family: var(--font-notoTC); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import OutProjectIcon from "../../assets/icons/outProjectDetail.svg"; | ||
import MeetingRoomProjectBox from "../../components/MeetingRoom/MeetingRoomProjectBox"; | ||
|
||
const MeetingRoom = () => { | ||
return ( | ||
<div | ||
className="flex w-full p-[50px] gap-[20px] bg-white bg-gradient-to-t from-white/0 via-[#BFCDB7]/30 to-white/0" | ||
style={{ maxHeight: "calc(100vh - 50px)" }} | ||
> | ||
<div className="flex-[0.37] h-[682px] flex flex-col gap-[30px] px-[30px] bg-white/60"> | ||
<div className="ml-[10px]"> | ||
<div className="inline-flex flex-col items-center"> | ||
<img | ||
src={OutProjectIcon} | ||
alt="프로젝트 나가기" | ||
className="w-[24px] h-[24px]" | ||
/> | ||
<span className="text-main-green01 font-bold">My 프로젝트</span> | ||
</div> | ||
</div> | ||
<div className="w-full h-full flex flex-col"> | ||
<MeetingRoomProjectBox /> | ||
</div> | ||
</div> | ||
<div className="flex-[0.63] h-[682px] bg-white/60">미팅룸</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default MeetingRoom; |