Minor improvements

This commit is contained in:
Anton Tananaev 2025-05-21 07:36:04 -07:00
parent 6dbe061c3b
commit 74f1fe5475
3 changed files with 13 additions and 4 deletions

View file

@ -52,7 +52,13 @@ class _StatusScreenState extends State<StatusScreen> {
itemCount: _logs.length,
itemBuilder: (_, index) => Padding(
padding: const EdgeInsets.symmetric(horizontal: 8.0),
child: Text(_logs[index]),
child: Text(
_logs[index],
style: TextStyle(
fontSize: 10,
fontFamily: 'monospace',
),
),
),
),
);