Implement individual song download

This commit is contained in:
Jorge Vargas 2025-03-10 19:35:55 -06:00
parent 108b37dfe3
commit bab6302247
4 changed files with 65 additions and 6 deletions

View file

@ -117,6 +117,7 @@ import Downloader from '../components/Downloader'
border-radius: 4px;
cursor: pointer;
transition: background 0.2s;
font-size: 13px;
}
.download-btn:hover {
background-color: #218838;
@ -153,12 +154,20 @@ import Downloader from '../components/Downloader'
display: flex;
gap: 8px;
}
a.download-btn {
text-decoration: none;
}
.download-btn.flac {
background-color: #6f42c1;
}
.download-btn.flac:hover {
background-color: #563d7c;
}
.download-btn .loader {
height: 8px;
width: 8px;
margin: 2px 8px;
}
.results h3 {
margin: 0;
font-size: 1.1em;