mirror of
https://github.com/bitwarden/browser
synced 2026-02-20 11:24:07 +00:00
24 lines
648 B
HTML
24 lines
648 B
HTML
@if (sideNavService.open) {
|
|
<div class="tw-sticky tw-top-0 tw-z-50">
|
|
<a
|
|
[routerLink]="route"
|
|
class="tw-px-5 tw-pb-5 tw-pt-7 tw-block tw-bg-background-alt3 tw-outline-none focus-visible:tw-ring focus-visible:tw-ring-inset focus-visible:tw-ring-text-alt2"
|
|
[attr.aria-label]="label"
|
|
[title]="label"
|
|
routerLinkActive
|
|
[ariaCurrentWhenActive]="'page'"
|
|
>
|
|
<bit-icon [icon]="openIcon"></bit-icon>
|
|
</a>
|
|
</div>
|
|
}
|
|
@if (!sideNavService.open) {
|
|
<bit-nav-item
|
|
class="tw-block tw-pt-7"
|
|
[hideActiveStyles]="true"
|
|
[route]="route"
|
|
[icon]="closedIcon"
|
|
[text]="label"
|
|
></bit-nav-item>
|
|
}
|