diff --git a/index.html b/index.html index e2d731c..2b08dbf 100644 --- a/index.html +++ b/index.html @@ -24,7 +24,7 @@
- Spotify + MyMusic diff --git a/src/search.js b/src/search.js index 11b0248..4657072 100644 --- a/src/search.js +++ b/src/search.js @@ -233,6 +233,6 @@ function albumClicked(event,id){ } function playlistClicked(event,id){ - alert("playlist clicked with playlist id as: "+id) + window.location.href = `/views/playlistsong.html?query=${id}`; console.log(id); } \ No newline at end of file diff --git a/styles/playlistsong.css b/styles/playlistsong.css index 065c204..b1b1447 100644 --- a/styles/playlistsong.css +++ b/styles/playlistsong.css @@ -1,7 +1,10 @@ +@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); + *{ margin: 0; padding: 0; box-sizing: border-box; + font-family: "Poppins", sans-serif; } .outer-playlist-container{ width: 100%;