1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-12-24 00:01:23 +00:00

Use full page width for article text

This commit is contained in:
Felix Ableitner 2024-12-11 13:04:10 +01:00
parent 3040e5539b
commit a06e462897

View file

@ -21,7 +21,7 @@ pub fn ReadArticle() -> impl IntoView {
.map(|article| { .map(|article| {
view! { view! {
<div <div
class="prose prose-slate" class="prose prose-slate max-w-full"
inner_html=render_markdown(&article.article.text) inner_html=render_markdown(&article.article.text)
></div> ></div>
} }