From aed022d05c120cc97a4c8fbc1d9074ab4a964688 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 16 Dec 2023 01:07:53 -0800 Subject: fix(anime): better alignment --- src/lib/Media/anime.ts | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'src/lib/Media/anime.ts') diff --git a/src/lib/Media/anime.ts b/src/lib/Media/anime.ts index 380b20d6..927da31b 100644 --- a/src/lib/Media/anime.ts +++ b/src/lib/Media/anime.ts @@ -70,20 +70,17 @@ export const airingTime = (anime: Media, upcoming = false) => { } const opacity = Math.max(50, 100 - (untilAiring / 60 / 60 / 24 / 7) * 50); - const alignment = get(settings).displayCountdownRightAligned ? 'float: right;' : ''; if (upcoming) return `${ - anime.nextAiringEpisode?.episode - }${totalEpisodes(anime)} in ${timeFrame} ${ - few ? `(${time})` : '' - }`; + }" style="opacity: ${opacity}%;">${anime.nextAiringEpisode?.episode}${totalEpisodes( + anime + )} in ${timeFrame} ${few ? `(${time})` : ''}`; else return `${anime.nextAiringEpisode?.episode} in ${ + }" style="opacity: ${opacity}%;">${anime.nextAiringEpisode?.episode} in ${ few ? '' : '' }${timeFrame}${few ? '' : ''} ${few ? `(${time})` : ''}`; } -- cgit v1.2.3