v3: various minor visual fixes
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 39s

This commit is contained in:
khannurien
2026-06-28 17:00:44 +00:00
parent fae25f3e6c
commit 324bff3133
12 changed files with 46 additions and 15 deletions

View File

@@ -1,4 +1,5 @@
import { useContext, useEffect, useRef, useState } from "react";
import { Link } from "react-router";
import { PlayerContext } from "../contexts/PlayerContext.ts";
import { MediaPlayer } from "./MediaPlayer.tsx";
@@ -75,7 +76,13 @@ export function GlobalPlayer() {
ref={ref}
>
<div className="global-player-header">
<span className="global-player-title">{title}</span>
{current.dumpHref
? (
<Link to={current.dumpHref} className="global-player-title">
{title}
</Link>
)
: <span className="global-player-title">{title}</span>}
<button
type="button"
className="btn btn--ghost"