mirror of
https://github.com/bitwarden/clients.git
synced 2026-02-04 16:13:53 +08:00
* add a slot for consumers to show user actions in anon layout header * remove commented code * ensure logo stays top aligned * switch to dashed naming * fix ngif statements * remove empty selector * remove unnecessary containers * use smaller logo on smaller screens * remove commented code from extension layout * remove dupe slot * only take extension screenshots on small screens * take screenshot at 380 * take large and small screenshot * update story to use new control flow
15 lines
550 B
HTML
15 lines
550 B
HTML
<auth-anon-layout
|
|
[title]="pageTitle"
|
|
[subtitle]="pageSubtitle"
|
|
[icon]="pageIcon"
|
|
[showReadonlyHostname]="showReadonlyHostname"
|
|
[maxWidth]="maxWidth"
|
|
[hideCardWrapper]="hideCardWrapper"
|
|
[hideBackgroundIllustration]="hideBackgroundIllustration"
|
|
>
|
|
<router-outlet slot="header-actions" name="header-actions"></router-outlet>
|
|
<router-outlet></router-outlet>
|
|
<router-outlet slot="secondary" name="secondary"></router-outlet>
|
|
<router-outlet slot="environment-selector" name="environment-selector"></router-outlet>
|
|
</auth-anon-layout>
|