def make_button(label: str, action: Callable[[Any], None]) -> Gtk.Button:
button = Gtk.Button(label=label)
button.connect('clicked', action)
+ button.set_margin_top(10)
+ button.set_margin_start(10)
+ button.set_margin_end(10)
+ button.set_margin_bottom(10)
return button