chore: Increase padding for code blocks

This commit is contained in:
Christian Kußowski 2025-11-19 10:24:58 +01:00
parent d8d0abf27c
commit 6836cab40e
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652

View file

@ -391,7 +391,10 @@ class HtmlMessage extends StatelessWidget {
controller: controller,
scrollDirection: Axis.horizontal,
child: Padding(
padding: const EdgeInsets.all(4.0),
padding: const EdgeInsets.symmetric(
horizontal: 8.0,
vertical: 4.0,
),
child: Text.rich(
TextSpan(
children: [_renderCodeBlockNode(element)],