This commit is contained in:
2024-01-06 01:55:26 +01:00
parent 3cea43edb6
commit a60deb8cd8
5 changed files with 105 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
<script>
import { currentStream, currentSongIndex } from '$lib/stores.js';
import { hashColor, shorthandCode, formatTrackTime, formatDate } from '$lib/utils.js';
import { shorthandCode, formatTrackTime, formatDate } from '$lib/utils.js';
import { jumpToTrack } from './Player.svelte';
import { Carta } from 'carta-md';
import DOMPurify from 'isomorphic-dompurify';
@@ -12,6 +12,10 @@
$: formattedStreamDate = formatDate($currentStream.stream_date);
</script>
<svelte:head>
<title>{formattedStreamDate} | apt-get's auditorium</title>
</svelte:head>
<div class="stream-information">
<h1 class="stream-date">{formattedStreamDate}</h1>
<h3 class="stream-id">ID: {shorthandCode($currentStream.id)}</h3>
@@ -101,6 +105,7 @@
.current {
background-color: rgba(128, 128, 128, 0.8);
}
.description-bubble {
position: relative;
background-color: rgba(255, 255, 255, 0.75);