fix(web/m7-364): align queue toggle styling with sibling toggles
- Queue toggle active class: bg-accent-tint text-accent (matches shuffle/repeat) - ListMusic icon size: 20 → 18 (matches siblings) - Right-side container width: w-48 → w-60 (accommodates 4 buttons + volume)
This commit is contained in:
@@ -159,7 +159,7 @@
|
||||
{/if}
|
||||
|
||||
<!-- Right: shuffle + repeat + volume -->
|
||||
<div class="flex w-48 items-center justify-end gap-2">
|
||||
<div class="flex w-60 items-center justify-end gap-2">
|
||||
<button
|
||||
type="button"
|
||||
aria-label="Shuffle"
|
||||
@@ -191,10 +191,10 @@
|
||||
aria-label={player.queueDrawerOpen ? 'Close queue' : 'Open queue'}
|
||||
aria-pressed={player.queueDrawerOpen}
|
||||
class="flex h-9 w-9 items-center justify-center rounded-full transition-colors {player.queueDrawerOpen
|
||||
? 'bg-action-secondary text-action-fg'
|
||||
? 'bg-accent-tint text-accent'
|
||||
: 'text-text-secondary hover:bg-surface-hover hover:text-text-primary'}"
|
||||
>
|
||||
<ListMusic size={20} strokeWidth={1.5} />
|
||||
<ListMusic size={18} strokeWidth={1.5} />
|
||||
</button>
|
||||
<label class="flex items-center gap-1.5">
|
||||
<span class="sr-only">Volume</span>
|
||||
|
||||
Reference in New Issue
Block a user