Compare commits

...

2 Commits

Author SHA1 Message Date
km0 dd57aea261 design 3 years ago
km0 d988c5127b design ecc (TODO NEED TO FIX SOME BUGS) 3 years ago

@ -22,7 +22,7 @@
<div id="editor"></div> <div id="editor"></div>
<div class="text-input"> <div class="text-input">
<form class="modal"> <form class="modal">
<input id="input" placeholder="Describe this area" type="text" /> <textarea id="input" placeholder="Describe this area" type="text"></textarea>
<button id="insert" type="submit">Insert</button> <button id="insert" type="submit">Insert</button>
<button id="cancel">x</button> <button id="cancel">x</button>
</form> </form>

@ -32,8 +32,8 @@ body {
.label { .label {
position: absolute; position: absolute;
/* background-color: tomato; */ background-color: rgba(250, 99, 72, 0.2);
border: 1px solid currentColor; /* border: 1px solid currentColor; */
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2); box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
overflow: hidden; overflow: hidden;
@ -83,6 +83,7 @@ body {
width: 100%; width: 100%;
height: 100%; height: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: pre;
} }
.text-input { .text-input {

Loading…
Cancel
Save