diff options
| author | Fuwn <[email protected]> | 2023-11-11 18:35:58 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-11-11 18:35:58 -0800 |
| commit | 2528ae4e97a7686a0a2907581e35215076644907 (patch) | |
| tree | e67fcf060586b3f3b42f7ec81f4c04f42968b74b | |
| parent | fix(tools): better default handling (diff) | |
| download | due.moe-2528ae4e97a7686a0a2907581e35215076644907.tar.xz due.moe-2528ae4e97a7686a0a2907581e35215076644907.zip | |
fix(wrapped): add more anilist fonts
| -rw-r--r-- | src/lib/Tools/Wrapped.svelte | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/lib/Tools/Wrapped.svelte b/src/lib/Tools/Wrapped.svelte index 2a327b17..391ffc7b 100644 --- a/src/lib/Tools/Wrapped.svelte +++ b/src/lib/Tools/Wrapped.svelte @@ -347,7 +347,8 @@ {/if} <style> - @import url(http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900italic,900); + @import url('http://fonts.googleapis.com/css?family=Roboto:300,400,500,700'); + @import url('https://fonts.googleapis.com/css?family=Overpass:400,600,700,800'); .categories-grid { display: flex; @@ -359,7 +360,13 @@ /* filter: invert(0) !important; */ background-color: #0b1622; font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, + Fira Sans, Droid Sans, Helvetica Neue, sans-serif; + } + + .categories-grid b { + font-family: Overpass, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif !important; + font-weight: 600 !important; } .category-grid, |