sdy

update chatScreen style

......@@ -139,11 +139,17 @@ const InputContainer = styled.div`
display: flex;
flex-direction: row;
width: 70%;
button {
width: 10%;
}
input {
width: 70%;
form {
width: 100%;
button {
background-color: #27ae60;
width: 10%;
color: white;
border-radius: 10px;
}
input {
width: 70%;
}
}
border: 1px solid rgba(0, 0, 0, 0.7);
border-radius: 10px;
......@@ -187,8 +193,10 @@ export default ({ data }) => {
<ChatScreenBox>
<InputWrapper>
<InputContainer>
<Input placeholder={"Enter any words"} />
<Button text={"Submit"} />
<form>
<Input placeholder={"Enter any words"} />
<Button text={"Submit"} />
</form>
</InputContainer>
</InputWrapper>
</ChatScreenBox>
......