Skip to content

Commit

Permalink
centered the elements
Browse files Browse the repository at this point in the history
  • Loading branch information
Buzzpy committed Feb 17, 2025
1 parent a4c7eb9 commit 504173b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion steller_wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ def __init__(self, root):
self.root.geometry("500x700")
self.root.resizable(False, False)

self.root.grid_columnconfigure(0, weight=1)

# Style configurations
self.style_config = {
"label": {"font": ("Arial", 15, "bold")},
Expand All @@ -23,7 +25,7 @@ def __init__(self, root):
self.grid_config = {
"padx": 10,
"pady": (10, 5),
"sticky": "w"

}

# Create Widgets
Expand Down

0 comments on commit 504173b

Please sign in to comment.