From a451ae8a98dcb3c62c12e62f2f9d10b8e60db580 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Sun, 25 Jan 2026 16:40:02 +0100 Subject: [PATCH] Adjust padding and icon size for download button 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 6f36661..7599431 100644 --- a/b0esche_cloud/lib/pages/public_file_viewer.dart +++ b/b0esche_cloud/lib/pages/public_file_viewer.dart @@ -312,13 +312,13 @@ class _PublicFileViewerState extends State { elevation: 0, leading: _fileData != null ? Padding( - padding: const EdgeInsets.only(left: 8, top: 8, bottom: 4), + padding: const EdgeInsets.only(left: 6, top: 6, bottom: 6), child: ModernGlassButton( onPressed: _downloadFile, padding: EdgeInsets.zero, child: SizedBox( width: 104, - child: const Center(child: Icon(Icons.download, size: 28)), + child: const Center(child: Icon(Icons.download, size: 26)), ), ), )