added a delete playlist song

This commit is contained in:
2024-04-19 11:04:15 -04:00
parent f56e13eaa9
commit 1377743aba
2 changed files with 58 additions and 3 deletions

View File

@ -240,11 +240,22 @@
.info {
display:flex;
flex-direction: row;
align-items: end;
h1 {
font-weight: bold;
font-size: 2rem;
margin-left: .5rem;
margin-right:2rem;
}
p {
color: #aaa;
}
}
.songs {
list-style: none;
padding: 0;
margin: 0;
margin-top: 2rem;
.song {
display: flex;
align-items: center;
@ -278,6 +289,19 @@
.duration {
}
.delete-song {
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.delete-song:hover {
transform: scale(1.1);
}
.delete-song:active {
transform: scale(0.8);
}
}
}
.song:first-child {