Make sure images can be fetched in subfolders

This commit is contained in:
Yuri Sizov
2023-03-04 21:56:35 +01:00
parent c1c5c409b9
commit 6296e244b6
3 changed files with 4 additions and 4 deletions

View File

@@ -50,10 +50,10 @@ export default class FileItem extends LitElement {
min-width: 16px;
}
:host .file-icon--folder {
background-image: url('/folder.svg');
background-image: url('folder.svg');
}
:host .file-icon--file {
background-image: url('/file.svg');
background-image: url('file.svg');
filter: brightness(0.5);
}

View File

@@ -33,7 +33,7 @@ export default class RootItem extends LitElement {
}
:host .root-icon {
background-image: url('/filesystem.svg');
background-image: url('filesystem.svg');
background-size: cover;
border-radius: 2px;
display: inline-block;

View File

@@ -50,7 +50,7 @@ export default class PullFilter extends LitElement {
bottom: 0;
width: 36px;
background-color: var(--g-background-extra-color);
background-image: url('/remove.svg');
background-image: url('remove.svg');
background-repeat: no-repeat;
background-position: center;
background-size: 20px 20px;