diff options
| author | Fuwn <[email protected]> | 2023-12-18 02:18:24 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-18 02:18:24 -0800 |
| commit | c8a7c84ead77eab41ba03388c6bb9e9bb5e64f02 (patch) | |
| tree | ed5c2cd1315b00e793f77c3a2abc309dae4a391b /src | |
| parent | chore(vite): remove https (diff) | |
| download | due.moe-c8a7c84ead77eab41ba03388c6bb9e9bb5e64f02.tar.xz due.moe-c8a7c84ead77eab41ba03388c6bb9e9bb5e64f02.zip | |
fix(wrapped): activity history alignment
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/Tools/Wrapped.svelte | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/Tools/Wrapped.svelte b/src/lib/Tools/Wrapped.svelte index 6f3d5f7f..4311b77c 100644 --- a/src/lib/Tools/Wrapped.svelte +++ b/src/lib/Tools/Wrapped.svelte @@ -413,7 +413,9 @@ {#if !disableActivityHistory} <div class="categories-grid" style="padding-top: 0;"> <div class="category-grid pure-category"> - <ActivityHistoryGrid {user} /> + <div id="activity-history"> + <ActivityHistoryGrid {user} /> + </div> </div> </div> {/if} |