mirror of
https://github.com/bitwarden/browser
synced 2026-02-13 15:03:26 +00:00
14 lines
427 B
HTML
14 lines
427 B
HTML
<header class="tw-flex tw-w-full tw-bg-background-alt tw-px-5">
|
|
@if (!hideLogo()) {
|
|
<a
|
|
[routerLink]="['/']"
|
|
class="tw-w-32 tw-py-5 sm:tw-w-[200px] tw-self-center sm:tw-self-start tw-block [&>*]:tw-align-top"
|
|
>
|
|
<bit-svg [icon]="logo" [ariaLabel]="'appLogoLabel' | i18n"></bit-svg>
|
|
</a>
|
|
}
|
|
<div class="[&:has(*)]:tw-ms-auto [&:has(*)]:tw-py-5">
|
|
<ng-content></ng-content>
|
|
</div>
|
|
</header>
|