Add resources management

This commit is contained in:
2025-01-08 12:46:36 +01:00
parent adb4923d00
commit fa7d3ecfca
13 changed files with 162 additions and 59 deletions

View File

@@ -21,7 +21,7 @@
}
input[name="name"] {
height: 50px;
height: 40px;
margin-right: 10px;
font-family: var(--font-secondary);
font-size: calc(var(--font-size-standard) * 1);
@@ -30,8 +30,8 @@
}
fieldset {
margin-bottom: 5px;
border-radius: 5px;
margin-bottom: 4px;
border-radius: 4px;
}
.form-fields {
@@ -57,13 +57,13 @@
.protagonist-sheet-common {
label {
font-family: var(--font-secondary);
font-size: calc(var(--font-size-standard) * 1.2);
font-size: calc(var(--font-size-standard) * 1.0);
}
}
.item-sheet-common {
.form-fields {
padding-top: 5px;
padding-top: 4px;
}
label {

View File

@@ -256,6 +256,15 @@
min-width: 20rem;
}
}
.resources {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
label {
min-width: 12rem;
}
}
.features,
.biodata {