Add the layout for the settings tab (closes #144)

This commit is contained in:
Oliver-Akins 2024-03-30 22:41:34 -06:00
parent 9a99f6fc35
commit e54857023b
2 changed files with 29 additions and 2 deletions

View file

@ -41,8 +41,16 @@
} }
} }
@include utils.tab("details") { %flex-col {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
@include utils.tab("details") {
@extend %flex-col;
}
@include utils.tab("settings") {
@extend %flex-col;
}
} }

View file

@ -1,3 +1,22 @@
<div class="tab" data-group="page" data-tab="settings"> <div class="tab" data-group="page" data-tab="settings">
Settings Tab {{#if computed.isEmbedded}}
<div class="combat-relevant panel">
Useful in Combat?
</div>
{{/if}}
{{#if isGM}}
<div class="capacity-usage panel">
Uses Capacity?
<br>
(GM Only)
</div>
<div class="quantity-capacity panel">
Quantity Affects Capacity?
<br>
(GM Only)
</div>
{{/if}}
<div class="calculated-capacity panel">
Total Capacity Used:
</div>
</div> </div>