Skip to content

Commit

Permalink
반응형 뷰 수정중
Browse files Browse the repository at this point in the history
  • Loading branch information
hyemigwak committed May 25, 2021
1 parent 2a2caf6 commit 36790ec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions src/components/Chatting.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Chatting = memo(({ icrId, history }) => {

const { chatJoinYn, handler } = useJoinChat(icrId); //참여 유무를 통해 버튼 결정

const [socket, disconnectSocket] = useSocket("https://15.165.76.76:3001/chatting", email, icrId);
const [socket, disconnectSocket] = useSocket("http://15.165.76.76:3001/chatting", email, icrId);

useEffect(() => {
return () => {
Expand Down Expand Up @@ -169,13 +169,14 @@ const ChatJoinBtn = styled.button`
@media (max-width: 767px) {
position: relative;
bottom: 40px;
bottom: 50px;
left: 80px;
transform: translate(-50%, -50%);
z-index: 2000;
z-index: 1000;
width: 150px;
height: 40px;
font-size: 15px;
margin: 50px 0px 0px 0px;
}
`;

Expand Down
2 changes: 1 addition & 1 deletion src/components/FloatBtn.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const FloatBtn = () => {
return (
<React.Fragment>
<BtnArea>
<a target="_blank" href="https://docs.google.com/forms/d/e/1FAIpQLSdS8daBSTBOcffTNGzCV47PQnMsAMD4hvbr3ZK2Wfk6ph2KZQ/viewform?usp=sf_link" rel="noreferrer">
<a target="_blank" href="https://forms.gle/Gneqs2c2okdBHXz67" rel="noreferrer">
<img src={dongmum3} alt="동멈이" />
</a>
<div className="survey">설문조사 부탁드려용🧡</div>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/AddProduct.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ const AddProduct = (props) => {
<>
<DatePicker
className="datepicker"
showTime={{ format: "HH:MM" }}
showTime={{ format: "HH" }}
disabledDate={disabledDate}
format="YYYY-MM-DD HH:MM"
format="YYYY-MM-DD HH"
onChange={onChange}
onOk={onOk}
placeholder="달력에서 날짜를 선택해주세요"
Expand Down

0 comments on commit 36790ec

Please sign in to comment.