Skip to content

Commit e5b54d8

Browse files
committed
Fix SVG favicon overflow
1 parent 18262d4 commit e5b54d8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/argo-archive-list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export class ArgoArchiveList extends LitElement {
9090
width: 20px !important;
9191
height: 20px !important;
9292
flex: 0 0 auto;
93-
object-fit: cover;
93+
object-fit: contain;
9494
border-radius: 4px;
9595
filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.6));
9696
}

src/argo-shared-archive-list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class ArgoSharedArchiveList extends LitElement {
9393
width: 20px !important;
9494
height: 20px !important;
9595
flex: 0 0 auto;
96-
object-fit: cover;
96+
object-fit: contain;
9797
border-radius: 4px;
9898
filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.6));
9999
}

src/sidepanel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class ArgoViewer extends LitElement {
135135
width: var(--md-icon-size) !important;
136136
height: var(--md-icon-size) !important;
137137
flex: 0 0 auto;
138-
object-fit: cover;
138+
object-fit: contain;
139139
border-radius: 4px;
140140
filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.6));
141141
}

0 commit comments

Comments
 (0)