mirror of
https://github.com/bitwarden/browser
synced 2026-01-09 20:13:42 +00:00
Move desktop into apps/desktop
This commit is contained in:
13
apps/desktop/src/app/layout/nav.component.html
Normal file
13
apps/desktop/src/app/layout/nav.component.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<ng-container *ngFor="let item of items">
|
||||
<button
|
||||
type="button"
|
||||
[routerLink]="item.link"
|
||||
class="btn primary"
|
||||
routerLinkActive="active"
|
||||
[title]="item.label"
|
||||
#rla="routerLinkActive"
|
||||
[attr.aria-pressed]="rla.isActive"
|
||||
>
|
||||
<i class="bwi" [ngClass]="item.icon"></i>{{ item.label }}
|
||||
</button>
|
||||
</ng-container>
|
||||
Reference in New Issue
Block a user