Spaces:
Sleeping
Sleeping
File size: 505 Bytes
13555f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | .Editor {
margin-left: 50px;
color: rgb(var(--center-channel-color-rgb));
background-color: rgb(var(--center-channel-bg-rgb));
.RootInput {
display: block;
}
&.with-content-type {
.RootInput {
display: none;
}
}
input {
width: 100%;
border: 1px solid hsl(0, 0%, 80%);
border-radius: 4px;
padding: 3px 6px;
outline: 0;
&:focus {
border: 2px solid #2684ff;
}
}
}
|