Spaces:
Running
Running
File size: 562 Bytes
79278ec |
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 29 30 31 32 |
.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);
}
|