Merge pull request #64 from Eldritch-Oliver/feature/haste-roll-shortcut

Added a button to roll for hasty turns in the Actor Stats sheet
This commit is contained in:
Oliver 2025-10-08 17:55:56 -06:00 committed by GitHub
commit a6047ff009
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 169 additions and 18 deletions

View file

@ -12,7 +12,15 @@
class="hero_name row-alt"
value="{{actor.name}}"
name="name"
autocomplete="off"
>
<div class="action-row">
<button
data-action="rollForHaste"
>
Haste Check
</button>
</div>
{{!-- * Armour --}}
<div class="armour">

View file

@ -53,6 +53,13 @@
margin-left: calc(var(--col-gap) * -1);
padding-left: var(--col-gap);
}
.action-row {
grid-column: span 3;
button {
border-bottom: 2px dashed var(--accent-3);
}
}
.glory-label {
grid-column: 2 / span 1;