feat(web/m7-377): AlbumCard gains bottom-right kebab

This commit is contained in:
2026-05-04 13:07:06 -04:00
parent 4e42fc8280
commit d35ed5945a
2 changed files with 33 additions and 0 deletions
+9
View File
@@ -5,6 +5,7 @@
import { enqueueTracks, playQueue } from '$lib/player/store.svelte';
import { Plus, Play } from 'lucide-svelte';
import LikeButton from './LikeButton.svelte';
import AlbumMenu from './AlbumMenu.svelte';
let { album }: { album: AlbumRef } = $props();
@@ -68,6 +69,14 @@
<Plus size={16} strokeWidth={1} />
</button>
</div>
<div class="absolute right-2 bottom-2 z-10">
<AlbumMenu
albumId={album.id}
albumTitle={album.title}
artistId={album.artist_id}
artistName={album.artist_name}
/>
</div>
</div>
<style>