Skip to content

Commit 7df845c

Browse files
Update music.component.html
1 parent 4110f0e commit 7df845c

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/app/features/music/music.component.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313

1414
<!-- Songs List -->
1515
<div *ngFor="let song of songs()"
16-
class="flex items-center gap-4 py-4 px-2 rounded-md hover:bg-[var(--list-hover)] transition-all cursor-pointer"
17-
[class.bg-[var(--list-hover)]]="currentSong?.url === getSongUrl(song)">
16+
class="flex items-center gap-4 py-4 px-2 rounded-md hover:bg-[var(--list-hover)] transition-all cursor-pointer">
1817
<div class="relative w-12 h-12 rounded-md overflow-hidden group" (click)="playSong(getSongUrl(song), song)">
1918
<img [src]="song.image?.[2]?.url || 'https://via.placeholder.com/48'" alt="{{ song.name }}"
2019
class="w-full h-full object-cover group-hover:brightness-75 transition-all duration-300 ease-in-out"
@@ -84,4 +83,4 @@
8483

8584
<footer class="fixed bottom-0 left-0 w-full bg-[var(--color-surface)] text-center text-sm py-2 z-50 text-muted">
8685
© 2025 exwise. All rights reserved. v{{appVersion}}
87-
</footer>
86+
</footer>

0 commit comments

Comments
 (0)