account panel menu now working
This commit is contained in:
parent
f1f809cc10
commit
a41f1051e5
|
@ -27,14 +27,20 @@
|
|||
<fa-icon [icon]="faUser"></fa-icon>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<app-direct-messages class="account__body" *ngIf="subPanel === 'dm'"></app-direct-messages>
|
||||
<app-favorites class="account__body" *ngIf="subPanel === 'favorites'"></app-favorites>
|
||||
<app-mentions class="account__body" *ngIf="subPanel === 'mentions'"></app-mentions>
|
||||
<app-my-account class="account__body" *ngIf="subPanel === 'account'"></app-my-account>
|
||||
<app-notifications class="account__body" *ngIf="subPanel === 'notifications'"></app-notifications>
|
||||
|
||||
<div class="account__body flexcroll">
|
||||
<!-- <div class="account__body flexcroll">
|
||||
|
||||
<h4 class="account__label">add column:</h4>
|
||||
|
||||
<a class="account__link account__blue" href *ngFor="let stream of availableStreams" (click)="addStream(stream)">
|
||||
{{ stream.name }}
|
||||
</a>
|
||||
</a> -->
|
||||
<!-- <a class="add-column__link" href>
|
||||
Global Timeline
|
||||
</a>
|
||||
|
@ -45,10 +51,10 @@
|
|||
Lists, Favs, Activitires, etc
|
||||
</a> -->
|
||||
|
||||
|
||||
<!--
|
||||
<h4 class="account__label account__margin-top">remove account from sengi:</h4>
|
||||
<a class="account__link account__red" href (click)="removeAccount()">
|
||||
Delete
|
||||
</a>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
|
@ -60,6 +60,7 @@ $account-header-height: 60px;
|
|||
height: calc(100% - #{$account-header-height} - 31px);
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; // outline: 1px solid red;
|
||||
font-size: $default-font-size;
|
||||
}
|
||||
&__label {
|
||||
// text-decoration: underline;
|
||||
|
|
Loading…
Reference in New Issue