fix(web): centered CW text

This commit is contained in:
əlemi 2024-04-29 22:01:49 +02:00
parent 7f996aa2c1
commit 394c7a487b
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -141,7 +141,7 @@ pub fn Summary(summary: Option<String>, open: bool, children: Children) -> impl
Some(summary) => view! {
<details class="pa-s" prop:open=open>
<summary>
<code class="cw color ml-s w-100">{summary}</code>
<code class="cw center color ml-s w-100">{summary}</code>
</summary>
{children()}
</details>