1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 05:13:29 +00:00

[CL-849] Update and consolidate logo svgs (#16390)

This commit is contained in:
Vicki League
2025-09-25 14:52:55 -04:00
committed by GitHub
parent 3b2a2e3129
commit e3a5111a35
12 changed files with 83 additions and 46 deletions

View File

@@ -5,12 +5,9 @@
[showBackButton]="showBackButton"
[pageTitle]="''"
>
<bit-icon
*ngIf="showLogo"
class="tw-inline-flex"
[icon]="logo"
[ariaLabel]="'appLogoLabel' | i18n"
></bit-icon>
<div class="tw-w-32">
<bit-icon *ngIf="showLogo" [icon]="logo" [ariaLabel]="'appLogoLabel' | i18n"></bit-icon>
</div>
<ng-container slot="end">
<app-pop-out></app-pop-out>

View File

@@ -5,7 +5,7 @@ import { Component, OnDestroy, OnInit } from "@angular/core";
import { ActivatedRoute, Data, NavigationEnd, Router, RouterModule } from "@angular/router";
import { Subject, filter, switchMap, takeUntil, tap } from "rxjs";
import { ExtensionBitwardenLogo, Icon } from "@bitwarden/assets/svg";
import { BitwardenLogo, Icon } from "@bitwarden/assets/svg";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import {
IconModule,
@@ -62,7 +62,7 @@ export class ExtensionAnonLayoutWrapperComponent implements OnInit, OnDestroy {
protected hideCardWrapper: boolean = false;
protected theme: string;
protected logo = ExtensionBitwardenLogo;
protected logo = BitwardenLogo;
constructor(
private router: Router,