audio streaming app plyr.fm

fix: thin player top bar glow from 2px to 1.5px (#988)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

authored by zzstoatzz.io

Claude Opus 4.6 and committed by
GitHub
566822d8 b1d00fb7

+1 -1
+1 -1
frontend/src/lib/components/player/Player.svelte
··· 646 646 --top-bar-color: var(--accent); 647 647 } 648 648 649 - .player::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--top-bar-color); opacity: 0.32; filter: saturate(0.9) brightness(0.75); box-shadow: 0 0 0 transparent; transition: opacity 0.2s ease, filter 0.2s ease, box-shadow 0.25s ease; pointer-events: none; z-index: 2; } 649 + .player::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px; background: var(--top-bar-color); opacity: 0.32; filter: saturate(0.9) brightness(0.75); box-shadow: 0 0 0 transparent; transition: opacity 0.2s ease, filter 0.2s ease, box-shadow 0.25s ease; pointer-events: none; z-index: 2; } 650 650 .player.is-playing::before { opacity: 0.95; filter: saturate(1.25) brightness(1.28); box-shadow: 0 0 6px color-mix(in srgb, var(--accent) 65%, transparent), 0 0 14px color-mix(in srgb, var(--accent) 45%, transparent); } 651 651 652 652 .player-content {