added log out into player dashboard, deleted unused elements
This commit is contained in:
parent
c700651427
commit
766b323042
@ -3,12 +3,12 @@
|
||||
<mat-card-header id="ability-card-header" [style.background]="headStyle.bgColor" [style.color]="headStyle.textColor">
|
||||
<div id="ability-value">{{ability.value}}</div>
|
||||
<div class="diagonal-line"></div>
|
||||
Mod: {{ability.modification > 0? '+' + ability.modification : '-' + ability.modification}}
|
||||
Mod: {{ability.modification > 0? '+' + ability.modification : + ability.modification}}
|
||||
<div class="diagonal-line"></div>
|
||||
{{ability.name}}
|
||||
<div *ngIf="ability.canSaveThrows" class="diagonal-line" style="margin-left: auto"></div>
|
||||
<div *ngIf="ability.canSaveThrows" style="margin-right: 10px">
|
||||
<div id="ability-saving-throws">ST: {{ability.savingThrows > 0? '+' + ability.savingThrows : '-' + ability.savingThrows}}</div>
|
||||
<div id="ability-saving-throws">ST: {{ability.savingThrows > 0? '+' + ability.savingThrows : ability.savingThrows}}</div>
|
||||
</div>
|
||||
</mat-card-header>
|
||||
<mat-divider [style.border-top-color]="'black'"></mat-divider>
|
||||
@ -17,7 +17,7 @@
|
||||
{{skill.name}}
|
||||
|
||||
<span [style.border-left-color]="headStyle.bgColor" id="skill-btn-divider"></span>
|
||||
{{skill.value > 0? '+' + skill.value : '-' + skill.value}}
|
||||
{{skill.value > 0? '+' + skill.value : + skill.value}}
|
||||
</a>
|
||||
</mat-card-content>
|
||||
</mat-card>
|
||||
|
@ -40,7 +40,7 @@
|
||||
<a matLine>Shop</a>
|
||||
</mat-list-item>
|
||||
|
||||
<mat-list-item>
|
||||
<mat-list-item [routerLink]="['/']" [routerLinkActive]="['active']">
|
||||
<mat-icon [class.active]="selected" matListIcon>exit_to_app</mat-icon>
|
||||
<a matLine>Log out</a>
|
||||
</mat-list-item>
|
||||
|
Loading…
Reference in New Issue
Block a user