From 44857c6a3c02d98623992a02c46a670bc9dd035d Mon Sep 17 00:00:00 2001 From: webfarben Date: Mon, 23 Feb 2026 18:56:50 +0100 Subject: [PATCH] style: Increase close button size in about dialog - Increase padding and height of close button - Make button fill full width with side padding - Better visual balance in the dialog window --- gui.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui.py b/gui.py index 4cd54ca..ba69d18 100644 --- a/gui.py +++ b/gui.py @@ -378,11 +378,11 @@ class PDFtoICSGUI: bg="#3498db", fg="white", font=("Arial", 10, "bold"), - padx=30, - pady=8, + padx=50, + pady=12, cursor="hand2" ) - close_btn.pack(pady=(0, 15)) + close_btn.pack(pady=(10, 15), fill=tk.X, padx=20) def save_config(self):