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
This commit is contained in:
2026-02-23 18:56:50 +01:00
parent 9173e59e1e
commit 44857c6a3c

6
gui.py
View File

@@ -378,11 +378,11 @@ class PDFtoICSGUI:
bg="#3498db", bg="#3498db",
fg="white", fg="white",
font=("Arial", 10, "bold"), font=("Arial", 10, "bold"),
padx=30, padx=50,
pady=8, pady=12,
cursor="hand2" cursor="hand2"
) )
close_btn.pack(pady=(0, 15)) close_btn.pack(pady=(10, 15), fill=tk.X, padx=20)
def save_config(self): def save_config(self):