Fix weapon sheet

This commit is contained in:
2026-03-08 17:27:59 +01:00
parent 31318317a7
commit e8d84615c5
15 changed files with 572 additions and 47 deletions

View File

@@ -114,4 +114,39 @@
font-weight: bold;
color: @color-blue;
}
// ── Class proficiency checkboxes ────────────────────────────
.proficiency-section {
display: flex;
gap: 8px;
margin-top: 8px;
.proficiency-fieldset {
flex: 1;
}
.proficiency-checkboxes {
display: flex;
flex-wrap: wrap;
gap: 4px 12px;
padding: 4px 2px;
}
.proficiency-option {
display: flex;
align-items: center;
gap: 4px;
font-family: @font-body;
font-size: @font-size-base;
color: @color-dark;
cursor: pointer;
white-space: nowrap;
input[type="checkbox"] {
width: auto;
height: auto;
accent-color: @color-blue;
}
}
}
}