Updated media player filter. Updated larger hero image size.

This commit is contained in:
2026-07-20 19:14:33 -07:00
parent 39b3e633a6
commit 8d233b17a5
2 changed files with 6 additions and 5 deletions
+4 -4
View File
@@ -56,8 +56,8 @@
animation: float 4s ease-in-out infinite; animation: float 4s ease-in-out infinite;
.hero-flower { .hero-flower {
width: 100px; width: 200px;
height: 100px; height: 200px;
margin: 0 auto; margin: 0 auto;
filter: drop-shadow(0 4px 12px rgba(232, 122, 46, 0.4)); filter: drop-shadow(0 4px 12px rgba(232, 122, 46, 0.4));
} }
@@ -200,8 +200,8 @@
} }
.hero-flower { .hero-flower {
width: 70px; width: 150px;
height: 70px; height: 150px;
} }
.hero-actions { .hero-actions {
@@ -5,7 +5,8 @@ import { StationConfigService } from '../services/station-config.service';
/** Decode malformed HTML entities from stream metadata (e.g. `&039;` → `'`). */ /** Decode malformed HTML entities from stream metadata (e.g. `&039;` → `'`). */
function decodeMetadata(text: string): string { 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). */ /** Shape of the Airtime live-info JSON response (subset of fields we use). */