I can't seem to resize a button I'm trying to make on tkinter, this is my first time using tkinter so I don't know too much, is this how it is meant to be done or is there a better or easier way? Whenever i try to run the code it says tkinter.tclerror unknown option "-height", the code I'm using is below. Thanks
from tkinter.ttk import *
...
myButton = Button(gui, text="Continue", height = 100, width = 100)
myButton.grid(row=10, column=2)