Rev 15805 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
@use '../../../css/shared/variables.scss';
.chat {
height: 100%;
}
.messagesContainer {
display: flex;
flex-flow: column-reverse;
flex-wrap: nowrap;
height: 85%;
padding: 1.5rem;
overflow: auto;
}
.messageWrapper {
display: flex;
flex-direction: column;
}
.chatInputContainer {
height: 15%;
width: 100%;
position: relative;
form {
padding: 0.5rem;
background-color: variables.$dark-white;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
}
.chatInput {
border: none;
min-height: 3rem;
width: 80%;
resize: none;
padding: 3% 0.5rem;
font-size: 1.2rem;
&::placeholder {
font-size: 1.2rem;
}
}
.sendBtn {
background-color: variables.$dark-blue;
height: 3rem;
color: white;
padding: 0.5rem;
border-radius: 5px;
margin-left: 0.2rem;
display: flex;
justify-content: center;
align-items: center;
}
.inputIcon {
font-size: 1.5rem;
& + & {
margin-right: 0.5rem;
}
}