Implement the description editing (closes #150)

This commit is contained in:
Oliver-Akins 2024-03-31 11:44:32 -06:00
parent fc065a5234
commit 97ac56dadc
4 changed files with 34 additions and 3 deletions

View file

@ -0,0 +1,24 @@
@use "../mixins/material" as material;
.dotdungeon.style-v3 > .window-content textarea {
outline: none;
border: none;
@include material.elevate(3);
color: white;
transition: all 200ms ease-in-out;
font-family: inherit;
font-size: 0.9rem;
&:hover {
@include material.elevate(4);
}
&:focus-visible {
@include material.elevate(6);
}
&.no-resize {
@extend textarea;
resize: none;
}
}