diff options
| author | Fuwn <[email protected]> | 2023-12-22 17:47:18 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-22 17:47:18 -0800 |
| commit | 4434837a1cede97999a3872bb5d4de3d58c2095a (patch) | |
| tree | 1c26d0eabadcab9194481135d5a33695a11da97e /src/lib/Tools | |
| parent | fix(manga): cap manga progress (diff) | |
| download | due.moe-4434837a1cede97999a3872bb5d4de3d58c2095a.tar.xz due.moe-4434837a1cede97999a3872bb5d4de3d58c2095a.zip | |
fix(wrapped): category for grid
Diffstat (limited to 'src/lib/Tools')
| -rw-r--r-- | src/lib/Tools/Wrapped.svelte | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/Tools/Wrapped.svelte b/src/lib/Tools/Wrapped.svelte index 0d8f0834..4d3f6ec4 100644 --- a/src/lib/Tools/Wrapped.svelte +++ b/src/lib/Tools/Wrapped.svelte @@ -130,7 +130,7 @@ let requiredWidth = topWidths > middleWidths ? topWidths : middleWidths; - if (bottomWidths > requiredWidth) requiredWidth = bottomWidths; + if (!disableActivityHistory && bottomWidths > requiredWidth) requiredWidth = bottomWidths; wrappedContainer.style.width = `${requiredWidth}px`; width = requiredWidth; @@ -541,8 +541,8 @@ </div> {/if} {#if !disableActivityHistory} - <div class="categories-grid bottom-category" style="padding-top: 0;"> - <div class="category-grid pure-category"> + <div class="categories-grid" style="padding-top: 0;"> + <div class="category-grid bottom-category pure-category category"> <div id="activity-history"> <ActivityHistoryGrid {user} activityData={activities} /> </div> |