diff --git a/admin/app/components/solidus_admin/ui/table/component.html.erb b/admin/app/components/solidus_admin/ui/table/component.html.erb index 22302aa7246..e0b79da9819 100644 --- a/admin/app/components/solidus_admin/ui/table/component.html.erb +++ b/admin/app/components/solidus_admin/ui/table/component.html.erb @@ -51,7 +51,7 @@ <% end %> <% if @search.filters.any? %> - <%= render component("ui/table/toolbar").new("data-#{stimulus_id}-target": "filterToolbar", hidden: initial_mode != "search") do %> + <%= render component("ui/table/toolbar").new("data-#{stimulus_id}-target": "filterToolbar", hidden: initial_mode != "search", class: "flex-wrap") do %> <% @search.filters.each_with_index do |filter, index| %> <%= render_ransack_filter_dropdown(filter, index) %> <% end %> diff --git a/admin/app/components/solidus_admin/ui/table/ransack_filter/component.html.erb b/admin/app/components/solidus_admin/ui/table/ransack_filter/component.html.erb index 76d2a121392..5c4a5c051bc 100644 --- a/admin/app/components/solidus_admin/ui/table/ransack_filter/component.html.erb +++ b/admin/app/components/solidus_admin/ui/table/ransack_filter/component.html.erb @@ -24,6 +24,7 @@ rounded-md shadow-lg bg-white ring-1 ring-black ring-opacity-5 + z-10 ">
<% if @selections.size > 6 %> diff --git a/admin/app/components/solidus_admin/ui/table/toolbar/component.rb b/admin/app/components/solidus_admin/ui/table/toolbar/component.rb index 58c6d5f2ca2..54370765f25 100644 --- a/admin/app/components/solidus_admin/ui/table/toolbar/component.rb +++ b/admin/app/components/solidus_admin/ui/table/toolbar/component.rb @@ -10,7 +10,7 @@ def call content, **@options, class: " - h-14 p-2 bg-white border-b border-gray-100 + min-h-14 p-2 bg-white border-b border-gray-100 justify-start items-center gap-2 visible:flex hidden:hidden rounded-t-lg