diff options
| author | Fuwn <[email protected]> | 2024-01-31 03:40:33 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-31 03:40:33 -0800 |
| commit | 2e8f0022665dd641bb1a676c16474c3ff63092f9 (patch) | |
| tree | 57b25e0d998d3a9d1dc647c0bc4a8621bfac1ee8 /src/lib/Tools | |
| parent | fix(layout): header z-index (diff) | |
| download | due.moe-2e8f0022665dd641bb1a676c16474c3ff63092f9.tar.xz due.moe-2e8f0022665dd641bb1a676c16474c3ff63092f9.zip | |
refactor(list): use global opacity class
Diffstat (limited to 'src/lib/Tools')
| -rw-r--r-- | src/lib/Tools/EpisodeDiscussionCollector.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Tools/EpisodeDiscussionCollector.svelte b/src/lib/Tools/EpisodeDiscussionCollector.svelte index 9715a68e..2be34dd4 100644 --- a/src/lib/Tools/EpisodeDiscussionCollector.svelte +++ b/src/lib/Tools/EpisodeDiscussionCollector.svelte @@ -53,7 +53,7 @@ .filter((thread) => thread.title.includes('[Spoilers]') && thread.title.includes('Episode')) .sort((a, b) => b.createdAt - a.createdAt) as thread} <li> - <span style="opacity: 50%; white-space: pre;"> + <span class="opaque" style="white-space: pre;"> {new Date(thread.createdAt * 1000).toLocaleDateString('en-US', { month: 'short', day: 'numeric', |