diff --git a/src/app/hero/hero.component.scss b/src/app/hero/hero.component.scss index b374e0c..8e25849 100644 --- a/src/app/hero/hero.component.scss +++ b/src/app/hero/hero.component.scss @@ -56,8 +56,8 @@ animation: float 4s ease-in-out infinite; .hero-flower { - width: 100px; - height: 100px; + width: 200px; + height: 200px; margin: 0 auto; filter: drop-shadow(0 4px 12px rgba(232, 122, 46, 0.4)); } @@ -200,8 +200,8 @@ } .hero-flower { - width: 70px; - height: 70px; + width: 150px; + height: 150px; } .hero-actions { diff --git a/src/app/media-player/media-player.component.ts b/src/app/media-player/media-player.component.ts index 81614ca..1b54141 100644 --- a/src/app/media-player/media-player.component.ts +++ b/src/app/media-player/media-player.component.ts @@ -5,7 +5,8 @@ import { StationConfigService } from '../services/station-config.service'; /** Decode malformed HTML entities from stream metadata (e.g. `&039;` → `'`). */ function decodeMetadata(text: string): string { - return text.replace(/'/g, "'"); + return text.replace(/'/g, "'") + .replace(/&/g, "&"); } /** Shape of the Airtime live-info JSON response (subset of fields we use). */