diff options
| author | Fuwn <[email protected]> | 2023-12-07 03:49:29 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-07 03:49:29 -0800 |
| commit | ed7d27bf0711d4b165681ad53ab0d6e98b6e2f6b (patch) | |
| tree | ea18f13596200578db55063a11875182bf9e7702 | |
| parent | fix(html): mai initial set (diff) | |
| download | due.moe-ed7d27bf0711d4b165681ad53ab0d6e98b6e2f6b.tar.xz due.moe-ed7d27bf0711d4b165681ad53ab0d6e98b6e2f6b.zip | |
feat(attributions): blur mangadex
| -rw-r--r-- | src/lib/Settings/Attributions.svelte | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/lib/Settings/Attributions.svelte b/src/lib/Settings/Attributions.svelte index 400a0fb5..b7430c6c 100644 --- a/src/lib/Settings/Attributions.svelte +++ b/src/lib/Settings/Attributions.svelte @@ -6,7 +6,7 @@ <a href="https://anilist.co/" target="_blank">AniList</a>: all but chapter, volume, and character birthday data </li> - <li>MangaDex: <b>only</b> chapter and volume count data</li> + <li><span id="mangadex">MangaDex</span>: <b>only</b> chapter and volume count data</li> <li> <a href="https://www.animecharactersdatabase.com/index.php" target="_blank"> Anime Characters Database @@ -30,3 +30,14 @@ above sites and services. </p> </details> + +<style> + #mangadex { + filter: blur(2.5px); + transition: filter 0.25s; + } + + #mangadex:hover { + filter: none; + } +</style> |