replace broken image references

This commit is contained in:
geoffrey45
2022-01-18 20:54:45 +03:00
parent 1d1e697fd2
commit a3d1b3aaea
3 changed files with 8 additions and 8 deletions
@@ -65,7 +65,7 @@ export default {
background-color: #ccc; background-color: #ccc;
margin: 0 0.5rem 0 0; margin: 0 0.5rem 0 0;
border-radius: 0.5rem; border-radius: 0.5rem;
background-image: url(../../assets/images/Jim_Reeves.png); background-image: url(../../assets/images/null.webp);
} }
.r-tracks .tracks .song-item .artist { .r-tracks .tracks .song-item .artist {
+2 -2
View File
@@ -475,7 +475,7 @@ export default {
background-color: rgba(26, 26, 26, 0.452); background-color: rgba(26, 26, 26, 0.452);
border-radius: 0.5rem; border-radius: 0.5rem;
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
background-image: url(../assets/images/thriller.jpg); background-image: url("../assets/images/null.webp");
} }
.title { .title {
@@ -516,7 +516,7 @@ export default {
background-color: rgba(16, 65, 14, 0.356); background-color: rgba(16, 65, 14, 0.356);
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
background-size: 50%; background-size: 50%;
background-image: url(../assets/images/thriller.jpg); background-image: url("../assets/images/null.webp");
background-size: cover; background-size: cover;
} }
+5 -5
View File
@@ -17,27 +17,27 @@ let showMediaNotif = () => {
{ {
src: current.image, src: current.image,
sizes: "128x128", sizes: "128x128",
type: "image/png", type: "image/webp",
}, },
{ {
src: current.image, src: current.image,
sizes: "192x192", sizes: "192x192",
type: "image/png", type: "image/webp",
}, },
{ {
src: current.image, src: current.image,
sizes: "256x256", sizes: "256x256",
type: "image/png", type: "image/webp",
}, },
{ {
src: current.image, src: current.image,
sizes: "384x384", sizes: "384x384",
type: "image/png", type: "image/webp",
}, },
{ {
src: current.image, src: current.image,
sizes: "512x512", sizes: "512x512",
type: "image/png", type: "image/webp",
}, },
], ],
}); });