diff --git a/src/components/player/TTSPlayer.tsx b/src/components/player/TTSPlayer.tsx index 94dea14..1badd9b 100644 --- a/src/components/player/TTSPlayer.tsx +++ b/src/components/player/TTSPlayer.tsx @@ -53,6 +53,7 @@ export default function TTSPlayer({ currentPage, numPages }: { onClick={skipBackward} aria-label="Skip backward" disabled={isProcessing} + className="relative" > {isProcessing ? : } @@ -61,6 +62,7 @@ export default function TTSPlayer({ currentPage, numPages }: { onClick={togglePlay} aria-label={isPlaying ? 'Pause' : 'Play'} disabled={isProcessing && !isPlaying} + className="relative" > {isPlaying ? : } @@ -69,6 +71,7 @@ export default function TTSPlayer({ currentPage, numPages }: { onClick={skipForward} aria-label="Skip forward" disabled={isProcessing} + className="relative" > {isProcessing ? : }