Improved actor bio scaling.

This commit is contained in:
DebaucheryLibrarian 2026-01-24 18:08:41 +01:00
parent 4569930a81
commit 9558ce80b4
1 changed files with 7 additions and 0 deletions

View File

@ -589,6 +589,7 @@ const socials = props.actor.socials.map((social) => ({
} }
.bio-item { .bio-item {
min-width: 50%;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
box-sizing: border-box; box-sizing: border-box;
@ -629,7 +630,9 @@ const socials = props.actor.socials.map((social) => ({
} }
.bio-value { .bio-value {
display: inline-block;
margin: 0 0 0 2rem; margin: 0 0 0 2rem;
max-width: 25rem;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
overflow: hidden; overflow: hidden;
@ -906,6 +909,10 @@ const socials = props.actor.socials.map((social) => ({
.bio { .bio {
margin-right: 1rem; margin-right: 1rem;
} }
.bio-value {
max-width: initial;
}
} }
@media(--compact) { @media(--compact) {