Skip to content
This repository was archived by the owner on Mar 11, 2026. It is now read-only.

Commit e90966d

Browse files
author
danste2.su
committed
fix html styling
1 parent d2c53ea commit e90966d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

custom_components/music_assistant_jukebox/files/jukebox.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1353,11 +1353,11 @@ <h2>Queueing Closed</h2>
13531353
const formattedSource = sourceProvider.replace(/_/g, ' ');
13541354

13551355
if (sourceProvider.toLowerCase() === 'spotify') {
1356-
sourceDiv.innerHTML = '<img src="https://storage.googleapis.com/pr-newsroom-wp/1/2023/05/Spotify_Full_Logo_RGB_White.png" alt="Spotify" style="height: 19px; width: auto; margin:17px; opacity: 80%;">';
1356+
sourceDiv.innerHTML = '<img src="https://storage.googleapis.com/pr-newsroom-wp/1/2023/05/Spotify_Full_Logo_RGB_White.png" alt="Spotify" style="height: 19px; width: auto; opacity: 80%;">';
13571357
} else if (sourceProvider.toLowerCase() === 'apple_music' || formattedSource.toLowerCase() === 'apple music') {
1358-
sourceDiv.innerHTML = '<img src="https://www.apple.com/v/music/a/images/heros/music_logo.svg" alt="Apple Music" style="height: 17px; margin:17px; width: auto; filter: brightness(0.8);">';
1358+
sourceDiv.innerHTML = '<img src="https://www.apple.com/v/music/a/images/heros/music_logo.svg" alt="Apple Music" style="height: 17px; width: auto; filter: brightness(0.8);">';
13591359
} else if (sourceProvider.toLowerCase() === 'library') {
1360-
sourceDiv.innerHTML = '<img src="https://www.music-assistant.io/assets/transparent-logo.png" alt="Music Assistant" style="height: 15px; width: auto; margin: 17px; filter: brightness(0.8)">';
1360+
sourceDiv.innerHTML = '<img src="https://www.music-assistant.io/assets/transparent-logo.png" alt="Music Assistant" style="height: 15px; width: auto; filter: brightness(0.8)">';
13611361
} else {
13621362
sourceDiv.textContent = formattedSource.charAt(0).toUpperCase() + formattedSource.slice(1);
13631363
sourceDiv.style.color = '#888';

0 commit comments

Comments
 (0)