Moved the areas button to the left

This commit is contained in:
WBHarry 2026-04-21 21:01:15 +02:00
parent 2ef07b5d84
commit 5bde5a8fe5
2 changed files with 1 additions and 2 deletions

View file

@ -630,7 +630,6 @@
flex: 1; flex: 1;
&.end-button { &.end-button {
margin-left: auto;
flex: 0; flex: 0;
} }
} }

View file

@ -1,4 +1,5 @@
<div class="roll-buttons"> <div class="roll-buttons">
{{#if areas.length}}<button class="action-areas end-button"><i class="fa-solid fa-crosshairs"></i></button>{{/if}}
{{#if hasDamage}} {{#if hasDamage}}
{{#unless (empty damage)}} {{#unless (empty damage)}}
<button class="duality-action damage-button">{{localize "DAGGERHEART.UI.Chat.damageRoll.dealDamage"}}</button> <button class="duality-action damage-button">{{localize "DAGGERHEART.UI.Chat.damageRoll.dealDamage"}}</button>
@ -14,5 +15,4 @@
{{/unless}} {{/unless}}
{{/if}} {{/if}}
{{#if (and hasEffect)}}<button class="duality-action-effect">{{localize "DAGGERHEART.UI.Chat.attackRoll.applyEffect"}}</button>{{/if}} {{#if (and hasEffect)}}<button class="duality-action-effect">{{localize "DAGGERHEART.UI.Chat.attackRoll.applyEffect"}}</button>{{/if}}
{{#if areas.length}}<button class="action-areas end-button"><i class="fa-solid fa-crosshairs"></i></button>{{/if}}
</div> </div>