Initial release for FoundryVTT

This commit is contained in:
2026-04-13 15:53:13 +02:00
parent f61cbf0b78
commit 1ff1425777
193 changed files with 11270 additions and 0 deletions

49
less/components.less Normal file
View File

@@ -0,0 +1,49 @@
.counter-field {
display: flex;
align-items: center;
gap: @spacing-sm;
}
.counter-field button,
.item-actions button,
.sheet-footer button,
.text-button,
.roll-button {
border: 1px solid @color-border;
border-radius: @radius-sm;
background: linear-gradient(180deg, #fdf9f2 0%, #e8d5ba 100%);
color: @color-ink;
min-height: 2rem;
padding: 0.35rem 0.65rem;
}
.text-button {
white-space: nowrap;
}
.roll-button {
width: 2rem;
padding: 0;
}
.with-controls {
gap: @spacing-sm;
}
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
gap: @spacing-md;
margin-bottom: @spacing-md;
}
.empty-state {
margin: 0;
color: @color-muted;
font-style: italic;
}
.span-two {
grid-column: span 2;
}