Buttons should always use cursor_pointer

This commit is contained in:
Nate Butler 2023-11-16 16:09:11 -05:00
parent c2d6d24952
commit 3d8e63b93b
2 changed files with 6 additions and 6 deletions

View file

@ -178,6 +178,7 @@ impl<V: 'static> Button<V> {
.text_ui()
.rounded_md()
.bg(self.variant.bg_color(cx))
.cursor_pointer()
.hover(|style| style.bg(self.variant.bg_color_hover(cx)))
.active(|style| style.bg(self.variant.bg_color_active(cx)));