Add the layout for the settings tab (closes #144)
This commit is contained in:
parent
9a99f6fc35
commit
e54857023b
2 changed files with 29 additions and 2 deletions
|
|
@ -41,8 +41,16 @@
|
|||
}
|
||||
}
|
||||
|
||||
@include utils.tab("details") {
|
||||
%flex-col {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
@include utils.tab("details") {
|
||||
@extend %flex-col;
|
||||
}
|
||||
|
||||
@include utils.tab("settings") {
|
||||
@extend %flex-col;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,22 @@
|
|||
<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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue