use a bigger size font for alert button text to see the scaling effect more easily

This commit is contained in:
Huy Pham 2020-03-02 09:17:35 -08:00
parent 9535d40b70
commit a7fa0bf6d3

View file

@ -182,21 +182,21 @@ def theme_change(event: tk.Event):
background="green",
padding=0,
relief=tk.NONE,
font="TkSmallCaptionFont",
font="TkDefaultFont",
)
style.configure(
Styles.yellow_alert,
background="yellow",
padding=0,
relief=tk.NONE,
font="TkSmallCaptionFont",
font="TkDefaultFont",
)
style.configure(
Styles.red_alert,
background="red",
padding=0,
relief=tk.NONE,
font="TkSmallCaptionFont",
font="TkDefaultFont",
)