Fix code action menu items font size in toolbar (#37824)

Danilo Leal created

Closes https://github.com/zed-industries/zed/issues/36478

Release Notes:

- N/A

Change summary

crates/editor/src/code_context_menus.rs | 1 +
1 file changed, 1 insertion(+)

Detailed changes

crates/editor/src/code_context_menus.rs 🔗

@@ -1502,6 +1502,7 @@ impl CodeActionsMenu {
                                     this.child(
                                         h_flex()
                                             .overflow_hidden()
+                                            .text_sm()
                                             .child(
                                                 // TASK: It would be good to make lsp_action.title a SharedString to avoid allocating here.
                                                 action.lsp_action.title().replace("\n", ""),