feat(web/m7-377): AlbumCard gains bottom-right kebab
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user