Spaces:
Running
Running
.editable { | |
box-sizing: border-box; | |
width: 100%; | |
font-size: 16px; | |
border: 0; | |
border-radius: 15px; | |
resize: none; | |
overflow-y: auto; | |
min-height: 1rem; | |
padding: 16px; | |
background-color: var(--bg-color); | |
outline: none; | |
text-align: left; | |
} | |
.editable:empty::before { | |
content: attr(data-placeholder); | |
color: var(--text-2-color); | |
display: block; | |
pointer-events: none; | |
opacity: 0.7; | |
} | |
.with_options { | |
border-bottom-left-radius: 0; | |
border-bottom-right-radius: 0; | |
} | |
.with_shadow { | |
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); | |
} | |