I want to set the size of a button in Tkinter, but it won't be as big as I want. It should be 100 pixels high and 100 pixels wide, but the button almost takes up the 800x600 window.
I am using this code to do the task:
import tkinter as tk
app = tk.Tk()
app.geometry("800x600")
button1 = tk.Button(app, text="Button 1", bg='blue', fg='white', width = 100, height = 100)
button1.pack(side=tk.LEFT)
button1.place(x=60, y=0)
app.mainloop()