I am trying to to place 2 buttons in the bottom-right and bottom-left of the screen so they stick when the window gets resized however when I anchor them and pack them they end up like this how do I fix this?
if newbuttonthere == False:
new_button = tk.Button(fightWindow, text="New", fg="black", command=newcharacter, font=("Courier", 20, "bold"))
new_button.pack(anchor=W, side=tk.BOTTOM)
new_button.configure(bg="grey")
if newbuttonthere == False:
newM_button = tk.Button(fightWindow, text="New Monster", fg="black", command=newmonster, font=("Courier", 20, "bold"))
newM_button.pack(anchor=E, side=tk.BOTTOM)
newM_button.configure(bg="grey")