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

[CL-750][CL-751][CL-752] Fix nav item truncation, clickable area, and shield logo (#15522)

This commit is contained in:
Vicki League
2025-07-10 17:02:42 -04:00
committed by GitHub
parent bf50160a47
commit 2f1ab48c37
6 changed files with 46 additions and 20 deletions

View File

@@ -11,7 +11,7 @@ import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/pl
import { IconModule, Icon } from "../icon";
import { BitwardenLogo } from "../icon/icons";
import { BitwardenShield } from "../icon/logos";
import { AnonLayoutBitwardenShield } from "../icon/logos";
import { SharedModule } from "../shared";
import { TypographyModule } from "../typography";
@@ -84,7 +84,7 @@ export class AnonLayoutComponent implements OnInit, OnChanges {
// If there is no icon input, then use the default icon
if (this.icon == null) {
this.icon = BitwardenShield;
this.icon = AnonLayoutBitwardenShield;
}
}