diff --git a/src/meditor/index.wc b/src/meditor/index.wc index 0f3d7a7..daa8946 100644 --- a/src/meditor/index.wc +++ b/src/meditor/index.wc @@ -60,7 +60,8 @@ min-width: 200px; min-height: 100px; // max-height: 360px; - border-radius: 2px; + border-radius: 3px; + transition: box-shadow 0.15s linear; } .meditor { @@ -135,6 +136,7 @@ background: none; outline: none; resize: none; + cursor: inherit; } .preview { @@ -336,6 +338,10 @@ width: 100%; height: 100%; } + +:host(:focus-within) { + box-shadow: 0 0 0 2px var(--color-plain-a); +}