Pets and misc changes

This commit is contained in:
Oliver-Akins 2024-01-26 21:40:27 -07:00
parent 4a3523d6cf
commit b30aa18a27
15 changed files with 244 additions and 32 deletions

View file

@ -11,8 +11,8 @@
"spells weapons aspect"
"backpack roles mounts"
"backpack roles mounts"
"summons storage storage"
"summons storage storage";
"pets storage storage"
"pets storage storage";
grid-template-columns: repeat(3, minmax(0, 1fr));
grid-template-rows:
min-content
@ -226,8 +226,18 @@
&--mounts {
grid-area: mounts;
}
&--summons {
grid-area: summons;
&--pets {
grid-area: pets;
.panel__content {
display: grid;
grid-template-rows: min-content min-content;
gap: 4px;
textarea {
resize: vertical;
}
}
}
&--storage {
grid-area: storage;
@ -266,8 +276,8 @@
"backpack roles"
"backpack roles"
"backpack spells"
"summons spells"
"summons storage"
"pets spells"
"pets storage"
"mounts storage"
"mounts storage";
@ -305,7 +315,7 @@
"weapons"
"spells"
"mounts"
"summons"
"pets"
"storage";
.panel {

View file

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