1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-28 04:08:47 +02:00

[PM-6825] Fix app icon styling in Browser (#9311)

* [PM-6825] Add style override for app icon in the extension to match desktop

* [PM-6825] Add Ids to favorites and allItems list containers for easier testing automations
This commit is contained in:
Shane Melton 2024-05-22 09:27:05 -07:00 committed by GitHub
parent ae74defc8c
commit 594a6f1daf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 0 deletions

View File

@ -458,3 +458,14 @@ html.force_redraw {
.rounded-circle {
border-radius: 50% !important;
}
/* override for vault icon in browser (pre extension refresh) */
app-vault-icon:not(app-vault-list-items-container app-vault-icon) > div {
display: flex;
justify-content: center;
align-items: center;
float: left;
height: 36px;
width: 34px;
margin-left: -5px;
}

View File

@ -39,10 +39,12 @@
<app-vault-list-items-container
[title]="'favorites' | i18n"
[ciphers]="favoriteCiphers$ | async"
id="favorites"
></app-vault-list-items-container>
<app-vault-list-items-container
[title]="'allItems' | i18n"
[ciphers]="remainingCiphers$ | async"
id="allItems"
></app-vault-list-items-container>
</ng-container>
</ng-container>