diff --git a/app/AudioPlayer.ts b/app/AudioPlayer.ts index e453823..201975e 100644 --- a/app/AudioPlayer.ts +++ b/app/AudioPlayer.ts @@ -32,7 +32,7 @@ export type CapacitorWindow = Window & { export type PlaybackState = 'stopped' | 'playing' | 'error'; -export const STREAM_URL = 'https://kryz.out.airtime.pro/kryz_b'; +export const STREAM_URL = 'https://kryz.out.airtime.pro/kryz_a'; export class AudioPlayer { private url: string; diff --git a/app/globals.css b/app/globals.css index 578df61..63cd5b2 100644 --- a/app/globals.css +++ b/app/globals.css @@ -87,6 +87,13 @@ button { transition: transform 120ms ease, background 120ms ease; } +button.playpause { + width: 100%; + aspect-ratio: 1; + font-size: clamp(2rem, 25vw, 6em); + padding: 0; +} + button:hover:not(:disabled) { background: var(--primary-press); } diff --git a/app/page.tsx b/app/page.tsx index 7fd79d1..111066b 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -48,11 +48,11 @@ export default function HomePage() {