You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
742 B

3 months ago
[data-component='ChatInput'] {
position: relative;
height: 100%;
width: 100%;
3 months ago
display: flex;
align-items: center;
> .sendOut {
width: 80px;
height: 34px;
background: linear-gradient( 139deg, #5C64FF 0%, #6988F8 100%);
border-radius: 17px;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
font-size: 12px;
margin: 0 12px;
}
3 months ago
> textarea {
3 months ago
// height: 100%;
3 months ago
width: 100%;
padding: 4px 8px;
resize: none;
outline: none;
3 months ago
background-color: rgba(#fff, 1);
color: #000;
3 months ago
font-family: inherit;
font-size: 13px;
font-weight: 400;
3 months ago
line-height: 23px;
3 months ago
border: none;
+placeholder() {
color: rgba(#fff, 0.35);
}
&:disabled {
opacity: 0.65;
}
}
}