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
45 lines
742 B
[data-component='ChatInput'] {
|
|
position: relative;
|
|
height: 100%;
|
|
width: 100%;
|
|
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;
|
|
}
|
|
|
|
> textarea {
|
|
// height: 100%;
|
|
width: 100%;
|
|
padding: 4px 8px;
|
|
resize: none;
|
|
outline: none;
|
|
background-color: rgba(#fff, 1);
|
|
color: #000;
|
|
font-family: inherit;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
line-height: 23px;
|
|
border: none;
|
|
|
|
+placeholder() {
|
|
color: rgba(#fff, 0.35);
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: 0.65;
|
|
}
|
|
}
|
|
}
|