Refactor episode cards, footer, podcast hero, player, and subscribe section for improved responsiveness; adjust padding, text sizes, and layout classes

This commit is contained in:
Mobin 2025-03-21 10:58:33 +03:30
parent ce5d2d29af
commit 16a13e1d47
5 changed files with 32 additions and 23 deletions

View file

@ -24,6 +24,7 @@ export function PodcastPlayer() {
useEffect(() => {
const audio = audioRef.current;
if (!audio) return;
audioRef.current?.load();
const updateTime = () => setCurrentTime(audio.currentTime);
const updateDuration = () => setDuration(audio.duration);
@ -114,7 +115,7 @@ export function PodcastPlayer() {
value={[currentTime]}
max={duration}
step={1}
className="w-full"
className="w-full mx-2"
onValueChange={(value) => {
if (audioRef.current) {
audioRef.current.currentTime = value[0];