25 lines
432 B
CSS
25 lines
432 B
CSS
.noTopLeftRadius textarea {
|
|
border-top-left-radius: 0;
|
|
}
|
|
|
|
.markdownInput textarea {
|
|
margin-top: -1px;
|
|
}
|
|
|
|
.markdownInput .text {
|
|
margin-top: -1px;
|
|
height: auto;
|
|
}
|
|
|
|
.clearButton {
|
|
background-color: var(--theme-inputBg);
|
|
border: 1px solid var(--theme-borderColor);
|
|
padding: 0rem 0.5rem;
|
|
border-left: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.clearButton.isInvalid {
|
|
border-color: #c03221;
|
|
} |