Pets and misc changes
This commit is contained in:
parent
4a3523d6cf
commit
b30aa18a27
15 changed files with 244 additions and 32 deletions
|
|
@ -14,4 +14,5 @@
|
|||
@use "./sheets/actor/mvp.scss";
|
||||
@use "./sheets/actor/sync/basic.scss";
|
||||
@use "./sheets/items/aspect.scss";
|
||||
@use "./sheets/items/spell.scss";
|
||||
@use "./sheets/items/spell.scss";
|
||||
@use "./sheets/items/pet.scss";
|
||||
|
|
@ -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 {
|
||||
|
|
|
|||
16
styles/sheets/items/pet.scss
Normal file
16
styles/sheets/items/pet.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue