how to make buttons smaller css code example
Example 1: css size button
button {
font-size: 20px; /* Put your wanted size for your button here*/
}
Example 2: how to make a button bigger in tkiter
button = tk.Button(text="START",width=10,height=10)
button.pack()