aboutsummaryrefslogtreecommitdiff
path: root/src/routes/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/tools')
-rw-r--r--src/routes/tools/+page.svelte8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/routes/tools/+page.svelte b/src/routes/tools/+page.svelte
index 4ee3d604..b0bb5569 100644
--- a/src/routes/tools/+page.svelte
+++ b/src/routes/tools/+page.svelte
@@ -22,7 +22,7 @@
{:else if tool === 2}
<ActivityHistory user={data.user} />
{:else if tool === 3}
- <div style="max-width: 953.6px;"><Wrapped user={data.user} /></div>
+ <div id="wrapped"><Wrapped user={data.user} /></div>
{:else if tool === 1}
<ul>
{#await todaysCharacterBirthdays()}
@@ -51,3 +51,9 @@
{/await}
</ul>
{/if}
+
+<style>
+ #wrapped {
+ max-width: 60%;
+ }
+</style>