fix(web): smaller actor summaries
This commit is contained in:
parent
9311cf25de
commit
d6b9ab4cfd
2 changed files with 5 additions and 1 deletions
|
@ -252,6 +252,10 @@
|
|||
background-color: rgba(var(--accent-rgb), 0.33);
|
||||
color: var(--accent);
|
||||
}
|
||||
p.bio {
|
||||
line-height: 1.2rem;
|
||||
font-size: .8rem;
|
||||
}
|
||||
p.tiny-text {
|
||||
line-height: .75em;
|
||||
}
|
||||
|
|
|
@ -97,7 +97,7 @@ pub fn ActorHeader() -> impl IntoView {
|
|||
}}
|
||||
</div>
|
||||
</div>
|
||||
<p class="mb-2 mt-0 center" inner_html={mdhtml::safe_html(actor.summary().unwrap_or_default())}></p>
|
||||
<p class="mb-2 mt-0 center bio" inner_html={mdhtml::safe_html(actor.summary().unwrap_or_default())}></p>
|
||||
</div>
|
||||
<Outlet />
|
||||
}.into_view()
|
||||
|
|
Loading…
Reference in a new issue