style pass on search bar

Ben Kunkle created

Change summary

crates/settings_ui/src/keybindings.rs | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)

Detailed changes

crates/settings_ui/src/keybindings.rs 🔗

@@ -229,7 +229,19 @@ impl Render for KeymapEditor {
             .bg(theme.colors().background)
             .id("keymap-editor")
             .track_focus(&self.focus_handle)
-            .child(self.filter_editor.clone())
+            .px_4()
+            .v_flex()
+            .pb_4()
+            .child(
+                h_flex()
+                    .w_full()
+                    .h_12()
+                    .px_4()
+                    .my_4()
+                    .border_2()
+                    .border_color(theme.colors().border)
+                    .child(self.filter_editor.clone()),
+            )
             .child(
                 Table::new()
                     .interactable(&self.table_interaction_state)