Implement Mob Sheet

This commit is contained in:
Oliver-Akins 2024-01-28 16:00:14 -07:00
parent c257e4e5ee
commit 028b8629fe
10 changed files with 202 additions and 1 deletions

View file

@ -12,6 +12,7 @@
@use "./sheets/partials/panel.scss";
@use "./sheets/actor/mvp.scss";
@use "./sheets/actor/mob.scss";
@use "./sheets/actor/sync/basic.scss";
@use "./sheets/items/aspect.scss";
@use "./sheets/items/spell.scss";

View file

@ -0,0 +1,16 @@
@use "../../vars" as *;
.dotdungeon .actor--mob {
padding: 4px;
input[type=text] {
font-size: 1.5em;
height: 1.5em;
width: 100%;
}
textarea {
width: 100%;
resize: vertical;
}
}