Adjust CSS to match new class structure
This commit is contained in:
parent
1dcfdfc1d8
commit
83f7391af3
3 changed files with 9 additions and 9 deletions
|
@ -50,12 +50,12 @@ limitations under the License.
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
.MessageComposer {
|
||||
.MessageComposer_input {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.MessageComposer > input {
|
||||
.MessageComposer_input > input {
|
||||
display: block;
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
|
|
|
@ -118,7 +118,7 @@ a {
|
|||
color: red;
|
||||
}
|
||||
|
||||
.MessageComposer > input {
|
||||
.MessageComposer_input > input {
|
||||
padding: 0.8em;
|
||||
border: none;
|
||||
}
|
||||
|
|
|
@ -462,16 +462,16 @@ a {
|
|||
color: red;
|
||||
}
|
||||
|
||||
.MessageComposer {
|
||||
.MessageComposer_input {
|
||||
border-top: 1px solid rgba(245, 245, 245, 0.90);
|
||||
padding: 8px 16px;
|
||||
}
|
||||
|
||||
.MessageComposer > :not(:first-child) {
|
||||
.MessageComposer_input > :not(:first-child) {
|
||||
margin-left: 12px;
|
||||
}
|
||||
|
||||
.MessageComposer > input {
|
||||
.MessageComposer_input > input {
|
||||
padding: 0 16px;
|
||||
border: none;
|
||||
border-radius: 24px;
|
||||
|
@ -481,7 +481,7 @@ a {
|
|||
font-family: "Inter", sans-serif;
|
||||
}
|
||||
|
||||
.MessageComposer > button.send {
|
||||
.MessageComposer_input > button.send {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
display: block;
|
||||
|
@ -496,7 +496,7 @@ a {
|
|||
background-position: center;
|
||||
}
|
||||
|
||||
.MessageComposer > button.sendFile {
|
||||
.MessageComposer_input > button.sendFile {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
display: block;
|
||||
|
@ -510,7 +510,7 @@ a {
|
|||
background-position: center;
|
||||
}
|
||||
|
||||
.MessageComposer > button.send:disabled {
|
||||
.MessageComposer_input > button.send:disabled {
|
||||
background-color: #E3E8F0;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue