hey there i was trying to make a gui using tkinter the following is the code that is used by me.The problem is there are no errors and the program execute and i will see the root but there is no frame.before adding button i was able to see frame but after adding button the frame disappears and i can only see button please help
from tkinter import*
from tkinter import ttk
root=Tk()
root.title("STUDY")
style=ttk.Style()
style.configure("custom.TFrame",background="black")
frame=ttk.Frame(root,style="custom.TFrame")
frame.pack()
frame.config(height=100,width=100)
ttk.Button(frame,text="CLICK ME").pack()
root.mainloop()