Skip to content

Commit

Permalink
Update block-domain.py
Browse files Browse the repository at this point in the history
  • Loading branch information
uhloofstardust committed Oct 26, 2023
1 parent 3799f35 commit 08a314d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions block-domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ def getdomain():
width=560,
height=200,
corner_radius=10)
inputfied = CTkEntry(master=scrollable,width=220,placeholder_text="Enter domain name")
app.geometry("600x500")
set_appearance_mode("dark")
inputfied = CTkEntry(master=app,width=220,placeholder_text="Enter domain name")
inputfied.pack(padx = 10,pady = 10)
btk = CTkButton(master=app,text="submit",command=getdomain)
btk.place(relx=0.5,rely=0.59,anchor="center")
scrollable.place(relx=0.5, rely=0.3, anchor=CENTER)
inputfied.pack()
app.mainloop()
btk.pack(padx = 10,pady = 10)
scrollable.pack(padx = 10,pady = 10)
app.mainloop()

0 comments on commit 08a314d

Please sign in to comment.