diff --git a/app/views/bubbles/_filters.html.erb b/app/views/bubbles/_filters.html.erb
index 36528da16..333a0381d 100644
--- a/app/views/bubbles/_filters.html.erb
+++ b/app/views/bubbles/_filters.html.erb
@@ -65,7 +65,22 @@
- <%= form_with url: bubbles_path, id: :filter_form, method: :get, class: "flex flex-column gap full-width margin-block-start", style: "--border-color: var(--color-subtle)" do %>
+
+ <%= form_tag bubbles_path, class: "flex align-center gap input input--actor txt-small fill-white border-radius", method: :get do %>
+ <% @filter.to_params.each do |key, value| %>
+ <%= filter_hidden_field_tag key, value %>
+ <% end %>
+
+ <%= search_field_tag "terms[]", nil, class: "input full-width", placeholder: "By keyword…", id: nil %>
+
+
+ <% end %>
+
+
+ <%= form_with url: bubbles_path, id: :filter_form, method: :get, class: "flex flex-column gap full-width", style: "--border-color: var(--color-subtle)" do %>
<% Array(params[:terms]).each do |term| %>
<%= hidden_field_tag "terms[]", term, id: nil %>
<% end %>
diff --git a/app/views/bubbles/index.html.erb b/app/views/bubbles/index.html.erb
index d80eb616e..ac070cb13 100644
--- a/app/views/bubbles/index.html.erb
+++ b/app/views/bubbles/index.html.erb
@@ -31,16 +31,6 @@
-
- <%= form_tag bubbles_path, method: :get do %>
- <% @filter.to_params.each do |key, value| %>
- <%= filter_hidden_field_tag key, value %>
- <% end %>
-
- <%= search_field_tag "terms[]", nil, class: "input center flex-inline", placeholder: "Type to filter…", id: nil %>
- <% end %>
-
-
<%= render partial: "bubbles/list/bubble", collection: @bubbles, cached: true %>