From 9558ce80b49ffe7e8216e2e396a19eba58172b8b Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Sat, 24 Jan 2026 18:08:41 +0100 Subject: [PATCH] Improved actor bio scaling. --- components/actors/bio.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/components/actors/bio.vue b/components/actors/bio.vue index b69d5fe..2b357bc 100644 --- a/components/actors/bio.vue +++ b/components/actors/bio.vue @@ -589,6 +589,7 @@ const socials = props.actor.socials.map((social) => ({ } .bio-item { + min-width: 50%; display: flex; justify-content: space-between; box-sizing: border-box; @@ -629,7 +630,9 @@ const socials = props.actor.socials.map((social) => ({ } .bio-value { + display: inline-block; margin: 0 0 0 2rem; + max-width: 25rem; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; @@ -906,6 +909,10 @@ const socials = props.actor.socials.map((social) => ({ .bio { margin-right: 1rem; } + + .bio-value { + max-width: initial; + } } @media(--compact) {