Improved actor bio scaling.
This commit is contained in:
parent
4569930a81
commit
9558ce80b4
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue