1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

[CL-805] [CL-521] anon layout illustrations (#16002)

* Add illustrations to anon layout

* update ids and fill classes

* Add illustrations to 404 page

* update svg sizes

* update logo size and placement to match loaded state

* update anon layout logo size to match loading screens

* update 404 logo size and spacing

* update svgIcon imports

* remove 404 footer

* absolutely position svg to fix random positioning issues

* update logo placement

* add padding to battom of logo container

* add back tw-link class

* update anon layout padding
This commit is contained in:
Bryan Cunningham
2025-08-20 15:06:24 -04:00
committed by GitHub
parent 487a04f579
commit 3901cf2859
9 changed files with 610 additions and 29 deletions

View File

@@ -21,6 +21,8 @@ import { AnonLayoutBitwardenShield } from "../icon/logos";
import { SharedModule } from "../shared";
import { TypographyModule } from "../typography";
import { LeftIllustration, RightIllustration } from "./illustrations";
export type AnonLayoutMaxWidth = "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl";
@Component({
@@ -35,6 +37,9 @@ export class AnonLayoutComponent implements OnInit, OnChanges {
return ["tw-h-full"];
}
readonly leftIllustration = LeftIllustration;
readonly rightIllustration = RightIllustration;
readonly title = input<string>();
readonly subtitle = input<string>();
readonly icon = model<Icon>();