Skip to content

Commit

Permalink
6/21
Browse files Browse the repository at this point in the history
  • Loading branch information
lse0522 committed Jun 21, 2024
1 parent 0d4379c commit fd0e33d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
11 changes: 5 additions & 6 deletions teams/.firebase/hosting.cHVibGlj.cache
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
404.html,1717413206984,05cbc6f94d7a69ce2e29646eab13be2c884e61ba93e3094df5028866876d18b3
favicon.ico,1717397591877,b72f7455f00e4e58792d2bca892abb068e2213838c0316d6b7a0d6d16acd1955
index.html,1717397591878,abb5524b04fc5bb93ff087cd3ab7fdcbd7bd621a5226ce5b14226aa3a401d15e
logo192.png,1717397591878,caff018b7f1e8fd481eb1c50d75b0ef236bcd5078b1d15c8bb348453fee30293
logo512.png,1717397591878,191fc21360b4ccfb1cda11a1efb97f489ed22672ca83f4064316802bbfdd750e
manifest.json,1717397591878,341d52628782f8ac9290bbfc43298afccb47b7cbfcee146ae30cf0f46bc30900
robots.txt,1717397591878,391d14b3c2f8c9143a27a28c7399585142228d4d1bdbe2c87ac946de411fa9a2
manifest.json,1718951738648,341d52628782f8ac9290bbfc43298afccb47b7cbfcee146ae30cf0f46bc30900
logo512.png,1717397591878,191fc21360b4ccfb1cda11a1efb97f489ed22672ca83f4064316802bbfdd750e
logo192.png,1717397591878,caff018b7f1e8fd481eb1c50d75b0ef236bcd5078b1d15c8bb348453fee30293
index.html,1718951847399,a26b0f27e2a49ee6447e2952c7afa903d626f530bf43d91daf7941eef9235e7c
404.html,1717413206984,05cbc6f94d7a69ce2e29646eab13be2c884e61ba93e3094df5028866876d18b3
Binary file removed teams/public/favicon.ico
Binary file not shown.
5 changes: 2 additions & 3 deletions teams/src/Pages/Chat/ChatPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,7 @@ function ChatPage() {
<div className="content-inner">
{chatid === "" ? (
<div className="chat-content-null">
<h2>게시물이 없습니다!</h2>
<p>오늘의 일정을 등록해 주세요!</p>
<h2>채팅방을 선택해 주세요!</h2>
</div>
) : (
<div className="modal-chat-content">
Expand Down Expand Up @@ -251,12 +250,12 @@ function ChatPage() {
))}
</div>

</div>
{/* 채팅 입력창 */}
<div className="chat-input-container">
<input type="text" onChange={onChangeInputMessage} />
<button onClick={handleSendMessage}>send message</button>
</div>
</div>
</div>
)}
</div>
Expand Down
6 changes: 6 additions & 0 deletions teams/src/Pages/Chat/ChatPageStyled.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@
font-size: 18px;
padding-bottom: 10px;
}
/* Chat View */
.chat-view{
overflow-y: scroll;
height: calc(100% - 200px);
}
/* Chat Date */
.chat-create-date{
text-align: center;
Expand Down Expand Up @@ -128,6 +133,7 @@
background-color: #fff;
box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
display: flex;
/* display: none; */
}
.chat-input-container input{
flex: 8;
Expand Down

0 comments on commit fd0e33d

Please sign in to comment.