add margin to article content

This commit is contained in:
Lea 2023-02-02 11:00:07 +01:00
parent 15d48b6d36
commit 0e4c13596e
Signed by: Lea
GPG key ID: 1BAFFE8347019C42

View file

@ -107,9 +107,12 @@ class _ArticlePageState extends State<ArticlePage> {
),
body: ListView(
children: [
SelectableHtml(
Container(
margin: const EdgeInsets.all(12.0),
child: SelectableHtml(
data: widget.article.html,
),
)
],
),
);