Update picker footer button style

Nate Butler and Piotr Osiewicz created

Co-Authored-By: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com>

Change summary

crates/vcs_menu/src/lib.rs      | 7 +++++--
styles/src/style_tree/picker.ts | 2 +-
2 files changed, 6 insertions(+), 3 deletions(-)

Detailed changes

crates/vcs_menu/src/lib.rs 🔗

@@ -1,8 +1,10 @@
 use anyhow::{anyhow, bail, Result};
 use fuzzy::{StringMatch, StringMatchCandidate};
 use gpui::{
-    actions, elements::*, platform::MouseButton, AppContext, MouseState, Task, ViewContext,
-    ViewHandle,
+    actions,
+    elements::*,
+    platform::{CursorStyle, MouseButton},
+    AppContext, MouseState, Task, ViewContext, ViewHandle,
 };
 use picker::{Picker, PickerDelegate, PickerEvent};
 use std::{ops::Not, sync::Arc};
@@ -290,6 +292,7 @@ impl PickerDelegate for BranchListDelegate {
                         .contained()
                         .with_style(style.container)
                 })
+                .with_cursor_style(CursorStyle::PointingHand)
                 .on_down(MouseButton::Left, |_, _, cx| {
                     cx.spawn(|picker, mut cx| async move {
                         picker.update(&mut cx, |this, cx| {

styles/src/style_tree/picker.ts 🔗

@@ -121,7 +121,7 @@ export default function picker(): any {
         },
         footer: interactive({
             base: {
-                text: text(theme.lowest, "sans", "variant", { size: "xs" }),
+                text: text(theme.lowest, "sans", "base", { size: "xs" }),
                 padding: {
                     bottom: 4,
                     left: 12,