Fix sizing of inline inbox action form

This commit is contained in:
Andreas Nedbal 2023-01-04 12:59:05 +01:00 committed by Andreas Nedbal
parent 23c01a97be
commit 99085f1836
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
.card-body
.d-md-flex
= bootstrap_form_tag url: inbox_path, method: :get, html: { class: "d-block" } do |f|
= f.text_field :author, value: params[:author], placeholder: t(".author.placeholder"), prepend: "@", hide_label: true,
= f.text_field :author, value: params[:author], placeholder: t(".author.placeholder"), prepend: "@", hide_label: true, wrapper: { class: "" },
append: f.button(t(".author.button"), name: nil, class: "btn btn-light", id: "ib-author")
.d-flex.ms-auto.mt-2.mt-md-0
= button_to inbox_create_path, class: "btn btn-info me-auto" do