From 6121acdc4b6d192d9a22892f3f83228255f336e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Sun, 25 Jan 2026 16:25:44 +0100 Subject: [PATCH] Adjust padding for leading ModernGlassButton in PublicFileViewer --- b0esche_cloud/lib/pages/public_file_viewer.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/b0esche_cloud/lib/pages/public_file_viewer.dart b/b0esche_cloud/lib/pages/public_file_viewer.dart index a4310a2..a96a34f 100644 --- a/b0esche_cloud/lib/pages/public_file_viewer.dart +++ b/b0esche_cloud/lib/pages/public_file_viewer.dart @@ -312,12 +312,12 @@ class _PublicFileViewerState extends State { elevation: 0, leading: _fileData != null ? Padding( - padding: const EdgeInsets.only(left: 8, top: 4, bottom: 4), + padding: const EdgeInsets.only(left: 8, top: 8, bottom: 4), child: ModernGlassButton( onPressed: _downloadFile, padding: EdgeInsets.zero, child: SizedBox( - width: 100, + width: 104, child: const Center(child: Icon(Icons.download, size: 28)), ), ),